fix: cleanup window close interception on plugin unload

This commit is contained in:
dragonwocky 2022-11-23 15:44:13 +11:00
parent c89a6e1f75
commit 94ab240b51
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -39,6 +39,10 @@ const onWindowClose = (event) => {
interceptWindowClose = () => { interceptWindowClose = () => {
const closeBtn = document.querySelector(".mod-close"); const closeBtn = document.querySelector(".mod-close");
closeBtn.addEventListener("click", onWindowClose, true); closeBtn.addEventListener("click", onWindowClose, true);
},
cleanupWindowClose = () => {
const closeBtn = document.querySelector(".mod-close");
closeBtn.removeEventListener("click", onWindowClose, true);
}; };
const setLaunchOnStartup = (plugin) => { const setLaunchOnStartup = (plugin) => {
@ -218,6 +222,7 @@ class TrayPlugin extends obsidian.Plugin {
} }
onunload() { onunload() {
unregisterHotkey(this); unregisterHotkey(this);
cleanupWindowClose();
} }
async loadSettings() { async loadSettings() {