소스 검색

lazy load timeout set to 250ms

Gildas 7 년 전
부모
커밋
8bce8a3d1b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      extension/core/content/content.js

+ 1 - 1
extension/core/content/content.js

@@ -142,7 +142,7 @@ this.singlefile.top = this.singlefile.top || (() => {
 				document.body.appendChild(scriptAfterElement);
 				scriptAfterElement.onload = () => scriptAfterElement.remove();
 				resolve();
-			}, 100);
+			}, 250);
 		});
 		return promise;
 	}