mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
export function showVaultManager() {
|
|
if (!document.querySelector(".workspace")) return;
|
|
if (document.querySelector(".vault-manager-overlay")) return;
|
|
|
|
new window.IgnisUI.VaultManager({
|
|
target: document.body,
|
|
});
|
|
}
|