victorwesterlund.com/public/assets/js/modules/Modal.mjs
2022-02-16 00:48:09 +00:00

16 lines
No EOL
434 B
JavaScript

export default class Modal {
constructor() {
this.assetsRoot = "/";
this.importStyleSheet();
console.log("post", Symbol.for("modal.style"));
}
importStyleSheet() {
const style = document.createElement("link");
style.setAttribute("rel", "stylesheet");
style.setAttribute("href", this.assetsRoot + "css/modal.css");
document.head.appendChild(style);
}
}