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
                     parentContainer: _this.pagesContainer
219
                     parentContainer: _this.pagesContainer
220
                 });
220
                 });
221
                 page.id = pageIds[i];
221
                 page.id = pageIds[i];
222
-                page.container.style.opacity = 'hidden';
222
+                page.container.style.visibility = 'hidden';
223
                 _this.pages.push(page);
223
                 _this.pages.push(page);
224
                 page.open();
224
                 page.open();
225
             });
225
             });

+ 1
- 1
dist/index.js View File

1905
                     parentContainer: _this.pagesContainer
1905
                     parentContainer: _this.pagesContainer
1906
                 });
1906
                 });
1907
                 page.id = pageIds[i];
1907
                 page.id = pageIds[i];
1908
-                page.container.style.opacity = 'hidden';
1908
+                page.container.style.visibility = 'hidden';
1909
                 _this.pages.push(page);
1909
                 _this.pages.push(page);
1910
                 page.open();
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
         page.id = pageIds[i];
323
         page.id = pageIds[i];
324
 
324
 
325
         // 这里隐藏 Dashboard 的图片源,Siema 切换的是占位图片
325
         // 这里隐藏 Dashboard 的图片源,Siema 切换的是占位图片
326
-        page.container.style.opacity = 'hidden';
326
+        page.container.style.visibility = 'hidden';
327
 
327
 
328
         this.pages.push(page);
328
         this.pages.push(page);
329
 
329