Added Firefox fixes

This commit is contained in:
Ajay Ramachandran
2019-12-31 14:50:01 -05:00
parent aba08a515e
commit b0e0c380dd
3 changed files with 9 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ body {
border-radius: 5px;
font-size: 14px;
width: fit-content;
width: max-content;
}
.option-button:hover {

View File

@@ -64,7 +64,10 @@ async function init() {
}
}
await wait(() => checksLeft == 0, 1000, 50);
// Don't wait on chrome
if (typeof(browser) == "undefined") {
await wait(() => checksLeft == 0, 1000, 50);
}
optionsContainer.classList.remove("hidden");
optionsContainer.classList.add("animated");