Преглед на файлове

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) {
 	function injectScript(path) {
 		const scriptElement = document.createElement(SCRIPT_TAG_NAME);
 		const scriptElement = document.createElement(SCRIPT_TAG_NAME);
 		scriptElement.src = browser.runtime.getURL(path);
 		scriptElement.src = browser.runtime.getURL(path);
-		document.body.appendChild(scriptElement);
+		document.documentElement.appendChild(scriptElement);
 		scriptElement.onload = () => scriptElement.remove();
 		scriptElement.onload = () => scriptElement.remove();
 	}
 	}