소스 검색

Ensures preload will be removed

main
Eric Amodio 2 년 전
부모
커밋
8d5d458c96
1개의 변경된 파일13개의 추가작업 그리고 11개의 파일을 삭제
  1. +13
    -11
      src/webviews/apps/shared/appBase.ts

+ 13
- 11
src/webviews/apps/shared/appBase.ts 파일 보기

@ -46,20 +46,22 @@ export abstract class App {
requestAnimationFrame(() => {
this.log(`${this.appName}.initializing`);
this.onInitialize?.();
this.bind();
try {
this.onInitialize?.();
this.bind();
if (this.onMessageReceived != null) {
window.addEventListener('message', this.onMessageReceived.bind(this));
}
this.sendCommand(WebviewReadyCommandType, undefined);
if (this.onMessageReceived != null) {
window.addEventListener('message', this.onMessageReceived.bind(this));
}
this.onInitialized?.();
this.sendCommand(WebviewReadyCommandType, undefined);
setTimeout(() => {
document.body.classList.remove('preload');
}, 500);
this.onInitialized?.();
} finally {
setTimeout(() => {
document.body.classList.remove('preload');
}, 500);
}
});
}

불러오는 중...
취소
저장