Files
ignis/shims/ui/vault-manager.js

9 lines
226 B
JavaScript
Raw Normal View History

2026-03-10 22:31:01 +01:00
export function showVaultManager() {
if (!document.querySelector(".workspace")) return;
2026-03-18 18:28:07 +01:00
if (document.querySelector(".vault-manager-overlay")) return;
2026-03-10 22:31:01 +01:00
2026-03-18 18:28:07 +01:00
new window.IgnisUI.VaultManager({
target: document.body,
2026-03-10 22:31:01 +01:00
});
}