Skip to content

Commit

Permalink
extension state muss direkt auf window objekt
Browse files Browse the repository at this point in the history
  • Loading branch information
GB609 authored Sep 25, 2024
1 parent 6c50cc3 commit dc4dc0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExtensionFramework/js/V3_Extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ async function startup() {
if (location.pathname == "/index.php"
|| location.pathname == "/") {
await ScriptManager.init(RESOURCES);
window.top.extensionReadyState = "complete";
unsafeWindow.top.extensionReadyState = "complete";
window.top.dispatchEvent(new Event('extensionReadyStateChange'));
}

Expand Down

0 comments on commit dc4dc0a

Please sign in to comment.