From 09fe3c2d03f3409572888ed1ae8063279b85352b Mon Sep 17 00:00:00 2001 From: Blue Falcon <130698314+anonhostpi@users.noreply.github.com> Date: Sun, 23 Jun 2024 01:57:53 -0700 Subject: [PATCH] feat: expose windowing APIs to other plugins exposes: - getWindows() - showWindows() - hideWindows() - toggleWindows() --- main.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.js b/main.js index 7f7c461..d49d9bd 100644 --- a/main.js +++ b/main.js @@ -478,6 +478,11 @@ class TrayPlugin extends obsidian.Plugin { cleanup(); } + getWindows = getWindows; + showWindows = showWindows; + hideWindows = hideWindows; + toggleWindows = toggleWindows; + async loadSettings() { const DEFAULT_SETTINGS = OPTIONS.map((opt) => ({ [opt.key]: opt.default })); this.settings = Object.assign(...DEFAULT_SETTINGS, await this.loadData());