소스 검색

feat: update

wxyyxc1992 5 년 전
부모
커밋
87801f27cf
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  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 파일 보기

@@ -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 파일 보기

@@ -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
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 1
src/board/Whiteboard/index.ts 파일 보기

@@ -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