fix: can't find variable on webkit
This commit is contained in:
parent
da610f3c81
commit
de43978359
@ -1,12 +1,12 @@
|
|||||||
const startPage = document.getElementById('internal__start-page');
|
const startPage = document.getElementById('internal__start-page');
|
||||||
const templatePage = document.getElementById('internal__template');
|
const templatePage = document.getElementById('internal__template');
|
||||||
|
|
||||||
|
const wait = (time) => new Promise(resolve => setTimeout(resolve, time * 1000));
|
||||||
|
|
||||||
if (!startPage || !templatePage) {
|
if (!startPage || !templatePage) {
|
||||||
alert("Base website template got corrupted! Can't find either start page or template page. Closing the window.");
|
alert("Base website template got corrupted! Can't find either start page or template page. Closing the window.");
|
||||||
window.close();
|
window.close();
|
||||||
} else {
|
} else {
|
||||||
const wait = (time) => new Promise(resolve => setTimeout(resolve, time * 1000))
|
|
||||||
|
|
||||||
async function proceed() {
|
async function proceed() {
|
||||||
const input = document.querySelector('#internal__start-page > input');
|
const input = document.querySelector('#internal__start-page > input');
|
||||||
const patches = DATA?.[input.value];
|
const patches = DATA?.[input.value];
|
||||||
|
Loading…
Reference in New Issue
Block a user