Fixed typo.

This commit is contained in:
Ylian Saint-Hilaire 2022-02-14 16:46:25 -08:00
parent ce0b7b030e
commit 92ad8e34bc

View File

@ -17218,7 +17218,7 @@
// Request Confirmation if closing while a desktop, terminal session is active
window.addEventListener('beforeunload', function (e) {
if (((desktop != null) && (xxcurrentView == 11)) || ((terminal != null) && (xxcurrentView = 12))) { e.preventDefault(); e.returnValue = ''; }
if (((desktop != null) && (xxcurrentView == 11)) || ((terminal != null) && (xxcurrentView == 12))) { e.preventDefault(); e.returnValue = ''; }
});
</script>