flexmonster 2.9.27 → 2.9.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/flexmonster.css +1 -1
- package/flexmonster.es5.full.js +2720 -2719
- package/flexmonster.es5.js +2552 -2551
- package/flexmonster.full.js +2232 -2231
- package/flexmonster.js +2227 -2226
- package/flexmonster.min.css +1 -1
- package/lib/html2canvas.v1.min.js +1 -1
- package/lib/jspdf.min.js +1 -1
- package/localizations/uk.json +4 -4
- package/package.json +1 -1
- package/theme/accessible/flexmonster.css +1 -1
- package/theme/accessible/flexmonster.min.css +1 -1
- package/theme/blackorange/flexmonster.css +1 -1
- package/theme/blackorange/flexmonster.min.css +1 -1
- package/theme/brightorange/flexmonster.css +1 -1
- package/theme/brightorange/flexmonster.min.css +1 -1
- package/theme/dark/flexmonster.css +1 -1
- package/theme/dark/flexmonster.min.css +1 -1
- package/theme/flexmonster-base.less +1 -1
- package/theme/green/flexmonster.css +1 -1
- package/theme/green/flexmonster.min.css +1 -1
- package/theme/lightblue/flexmonster.css +1 -1
- package/theme/lightblue/flexmonster.min.css +1 -1
- package/theme/macos/flexmonster.css +1 -1
- package/theme/macos/flexmonster.min.css +1 -1
- package/theme/midnight/flexmonster.css +1 -1
- package/theme/midnight/flexmonster.min.css +1 -1
- package/theme/old/flexmonster.css +1 -1
- package/theme/old/flexmonster.min.css +1 -1
- package/theme/orange/flexmonster.css +1 -1
- package/theme/orange/flexmonster.min.css +1 -1
- package/theme/purple/flexmonster.css +1 -1
- package/theme/purple/flexmonster.min.css +1 -1
- package/theme/softdefault/flexmonster.css +1 -1
- package/theme/softdefault/flexmonster.min.css +1 -1
- package/theme/stripedblue/flexmonster.css +1 -1
- package/theme/stripedblue/flexmonster.min.css +1 -1
- package/theme/stripedteal/flexmonster.css +1 -1
- package/theme/stripedteal/flexmonster.min.css +1 -1
- package/theme/teal/flexmonster.css +1 -1
- package/theme/teal/flexmonster.min.css +1 -1
- package/theme/yellow/flexmonster.css +1 -1
- package/theme/yellow/flexmonster.min.css +1 -1
- package/toolbar/flexmonster.toolbar.js +4 -3
- package/types/flexmonster.d.ts +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Flexmonster Pivot Table & Charts [https://www.flexmonster.com/]
|
|
3
|
-
*
|
|
3
|
+
* July 2022 (v. 2.9.30)
|
|
4
4
|
* Copyright (c) 2022 Flexmonster. All rights reserved.
|
|
5
5
|
*
|
|
6
6
|
* Flexmonster Pivot Table & Charts commercial licenses may be obtained at
|
|
@@ -2506,7 +2506,8 @@ FlexmonsterToolbar.prototype.enterFullscreen = function (element) {
|
|
|
2506
2506
|
|
|
2507
2507
|
this.toolbarWrapper.style.width = "100%";
|
|
2508
2508
|
var fullScreenChangeHandler = null;
|
|
2509
|
-
|
|
2509
|
+
|
|
2510
|
+
this._redrawToolbar();
|
|
2510
2511
|
|
|
2511
2512
|
if (element.requestFullscreen) {
|
|
2512
2513
|
element.requestFullscreen();
|
|
@@ -2578,7 +2579,7 @@ FlexmonsterToolbar.prototype.exitFullscreen = function () {
|
|
|
2578
2579
|
document.msExitFullscreen();
|
|
2579
2580
|
}
|
|
2580
2581
|
|
|
2581
|
-
this.
|
|
2582
|
+
this._redrawToolbar();
|
|
2582
2583
|
|
|
2583
2584
|
this.setText(document.querySelector("#fm-tab-fullscreen .fm-tab-label"), this.Labels.fullscreen);
|
|
2584
2585
|
document.querySelector("#fm-tab-fullscreen .fm-svg-icon").innerHTML = this.icons.fullscreen;
|