iobroker.mywebui 1.37.89 → 1.37.90
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/io-package.json
CHANGED
package/package.json
CHANGED
|
@@ -1104,7 +1104,7 @@ export class IobrokerWebuiAppShell extends BaseCustomWebComponentConstructorAppe
|
|
|
1104
1104
|
// Apply to all open screen editors
|
|
1105
1105
|
for (const ed of this._dock.querySelectorAll('iobroker-webui-screen-editor')) {
|
|
1106
1106
|
const canvas = ed.documentContainer?.designerView?.designerCanvas;
|
|
1107
|
-
if (canvas) canvas.pauseAnimations =
|
|
1107
|
+
if (canvas) canvas.pauseAnimations = value;
|
|
1108
1108
|
}
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
@@ -630,7 +630,7 @@ export class IobrokerWebuiScreenEditor extends BaseCustomWebComponentConstructor
|
|
|
630
630
|
});
|
|
631
631
|
// Apply current editor animations state (set by the checkbox in Animations/Effects panels)
|
|
632
632
|
const canvas = this.documentContainer.designerView.designerCanvas;
|
|
633
|
-
if (canvas) canvas.pauseAnimations =
|
|
633
|
+
if (canvas) canvas.pauseAnimations = window.appShell._editorAnimationsEnabled;
|
|
634
634
|
}
|
|
635
635
|
_controlDefaultWidth = '800px';
|
|
636
636
|
_controlDefaultHeight = '600px';
|