소스 검색

feat(isolation): script now removes itself to hide key from DOM (#9328)

Lucas Fernandes Nogueira 1 년 전
부모
커밋
a804a70a7a
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      .changes/isolation-script-remove-itself.md
  2. 2 0
      core/tauri-utils/src/pattern/isolation.js

+ 5 - 0
.changes/isolation-script-remove-itself.md

@@ -0,0 +1,5 @@
+---
+"tauri-utils": patch:enhance
+---
+
+The isolation iframe script now removes itself after execution.

+ 2 - 0
core/tauri-utils/src/pattern/isolation.js

@@ -135,4 +135,6 @@
   }
 
   setTimeout(waitUntilReady, readyIntervalMs)
+
+  document.currentScript.remove()
 })()