Jelajahi Sumber

fixed error when body does not exist

Gildas 7 tahun lalu
induk
melakukan
0540097fa8
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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();
 	}