Fix - hide the emulator button.

This commit is contained in:
Ivan Davidov 2020-09-08 14:17:47 +03:00
parent 98471cb5e1
commit c9adf12db6

View File

@ -94,9 +94,9 @@ export function hideEmulatorMenu(): void {
throw new Error("thankYou: document is null.");
}
let hm5: HTMLElement | null = document.getElementById('hm5');
let hm5: HTMLElement | null = document.getElementById('hm6');
if(!hm5) {
throw new Error("thankYou: hm5 is null.");
throw new Error("thankYou: hm6 is null.");
}
hm5.style.display="none";
}