فهرست منبع

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();
 	}