Browse Source

feat: update

wxyyxc1992 5 years ago
parent
commit
87801f27cf
4 changed files with 4 additions and 4 deletions
  1. 1
    1
      dist/cjs/board/Whiteboard/index.js
  2. 1
    1
      dist/index.js
  3. 1
    1
      dist/index.js.map
  4. 1
    1
      src/board/Whiteboard/index.ts

+ 1
- 1
dist/cjs/board/Whiteboard/index.js View File

@@ -219,7 +219,7 @@ var Whiteboard = (function () {
219 219
                     parentContainer: _this.pagesContainer
220 220
                 });
221 221
                 page.id = pageIds[i];
222
-                page.container.style.opacity = 'hidden';
222
+                page.container.style.visibility = 'hidden';
223 223
                 _this.pages.push(page);
224 224
                 page.open();
225 225
             });

+ 1
- 1
dist/index.js View File

@@ -1905,7 +1905,7 @@ var Whiteboard = function () {
1905 1905
                     parentContainer: _this.pagesContainer
1906 1906
                 });
1907 1907
                 page.id = pageIds[i];
1908
-                page.container.style.opacity = 'hidden';
1908
+                page.container.style.visibility = 'hidden';
1909 1909
                 _this.pages.push(page);
1910 1910
                 page.open();
1911 1911
             });

+ 1
- 1
dist/index.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
src/board/Whiteboard/index.ts View File

@@ -323,7 +323,7 @@ export class Whiteboard {
323 323
         page.id = pageIds[i];
324 324
 
325 325
         // 这里隐藏 Dashboard 的图片源,Siema 切换的是占位图片
326
-        page.container.style.opacity = 'hidden';
326
+        page.container.style.visibility = 'hidden';
327 327
 
328 328
         this.pages.push(page);
329 329