feat: expose windowing APIs to other plugins

exposes:
- getWindows()
- showWindows()
- hideWindows()
- toggleWindows()
This commit is contained in:
Blue Falcon 2024-06-23 01:57:53 -07:00 committed by GitHub
parent cc0baa3226
commit 09fe3c2d03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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());