Merge pull request #742 from jcalado/offline-notification

"no network connection" alert
This commit is contained in:
Steve Seguin 2021-02-23 17:54:12 -05:00 committed by GitHub
commit 14c13b02de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
main.js
View File

@ -11982,4 +11982,14 @@ addEventToAll("#multiselect-trigger3", 'mousedown touchend focusin focusout', fu
e.stopPropagation();
});
// Warns user about network going down
window.addEventListener("offline", function (e) {
if (!session.cleanOutput) {
alert("OBS.Ninja has no network connectivity and can't work properly.");
} else {
console.log(
"OBS.Ninja has no network connectivity and can't work properly."
);
}
});