filestash/public/helpers/modal.js
2023-07-25 23:32:30 +10:00

13 lines
322 B
JavaScript

// prompt, alert, confirm, modal, popup?
class ModalManager {
constructor() {
this.$dom = document.body.querySelector("component-modal");
if (!this.$dom) throw new Error("dom not set");
}
alert($node, opts) {
this.$dom.trigger($node, opts);
}
}
export default new ModalManager();