소스 검색

fixed error when body does not exist

Gildas 7 년 전
부모
커밋
0540097fa8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/lazy/content/content-lazy-loader.js

+ 1 - 1
lib/lazy/content/content-lazy-loader.js

@@ -81,7 +81,7 @@ this.lazyLoader = this.lazyLoader || (() => {
 	function injectScript(path) {
 		const scriptElement = document.createElement(SCRIPT_TAG_NAME);
 		scriptElement.src = browser.runtime.getURL(path);
-		document.body.appendChild(scriptElement);
+		document.documentElement.appendChild(scriptElement);
 		scriptElement.onload = () => scriptElement.remove();
 	}