From 94ab240b5185f5513ae4052628c0960cae891931 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Wed, 23 Nov 2022 15:44:13 +1100 Subject: [PATCH] fix: cleanup window close interception on plugin unload --- main.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.js b/main.js index 8adef1c..3ec2a38 100644 --- a/main.js +++ b/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() {