changed style display none order

This commit is contained in:
Matteo Manzinello 2019-07-18 10:04:46 +02:00
parent ad469a78dc
commit be8146812b
2 changed files with 2 additions and 2 deletions

2
dist/mailgo.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -18,9 +18,9 @@ document.head.appendChild(mailgoCSS);
const mailgoInit = () => {
// modal
let modal = document.createElement("div");
modal.style.display = "none";
modal.id = "mailgo";
modal.classList.add("mailgo-modal");
modal.style.display = "none";
// background
let modalBackground = document.createElement("div");