mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-03 11:39:02 +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 = () => {
|
||||
const closeBtn = document.querySelector(".mod-close");
|
||||
closeBtn.addEventListener("click", onWindowClose, true);
|
||||
},
|
||||
cleanupWindowClose = () => {
|
||||
const closeBtn = document.querySelector(".mod-close");
|
||||
closeBtn.removeEventListener("click", onWindowClose, true);
|
||||
};
|
||||
|
||||
const setLaunchOnStartup = (plugin) => {
|
||||
@ -218,6 +222,7 @@ class TrayPlugin extends obsidian.Plugin {
|
||||
}
|
||||
onunload() {
|
||||
unregisterHotkey(this);
|
||||
cleanupWindowClose();
|
||||
}
|
||||
|
||||
async loadSettings() {
|
||||
|
Loading…
Reference in New Issue
Block a user