mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 03:59:03 +00:00
fix: cleanup window close interception on plugin unload
This commit is contained in:
parent
c89a6e1f75
commit
94ab240b51
5
main.js
5
main.js
@ -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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user