@flexem/fc-gui 3.0.0-alpha.88 → 3.0.0-alpha.89

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.
@@ -180,9 +180,11 @@ export class ViewOperationElement extends ConditionalEnableElement {
180
180
  }
181
181
  closeView() {
182
182
  this.popupViewService.closeView();
183
- $(`#${this.hostContainerId} .video-hidden`)
184
- .removeClass('video-hidden')
185
- .css('visibility', 'visible');
183
+ if ($(`#${this.hostContainerId} svg`).length === 1) {
184
+ $(`#${this.hostContainerId} .video-hidden`)
185
+ .removeClass('video-hidden')
186
+ .css('visibility', 'visible');
187
+ }
186
188
  this.recordViewOperation();
187
189
  }
188
190
  moveView(movementX, movementY) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "bundles/fc-gui.umd.js",
3
- "version": "3.0.0-alpha.88",
3
+ "version": "3.0.0-alpha.89",
4
4
  "module": "public_api.js",
5
5
  "typings": "public_api.d.ts",
6
6
  "license": "UNLICENSED",