Explorar el Código

fix: error when using JS preload script

Ahmad Kholid hace 2 años
padre
commit
0a18bf5c97
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/newtab/utils/javascriptBlockUtil.js

+ 1 - 1
src/newtab/utils/javascriptBlockUtil.js

@@ -103,7 +103,7 @@ export function jsContentHandler($blockData, $preloadScripts, $automaScript) {
         function cleanUp() {
           script.remove();
           preloadScriptsEl.forEach((item) => {
-            if (item.removeAfterExec) item.script.remove();
+            if (item.removeAfterExec) item.element.remove();
           });
 
           clearTimeout(timeout);