victorwesterlund.com/public/assets/js/modules/Dialog.mjs
2022-07-18 10:20:11 +02:00

15 lines
No EOL
307 B
JavaScript

export class Dialog {
constructor(target) {
this.dialog = document.createElement("dialog");
if (typeof this.dialog.showModal !== "function") {
throw new Error("Browser does not support HTMLDialogElement");
}
document.body.appendChild(this.dialog);
}
open() {
this.dialog.showModal();
}
}