Merge branch 'ent-9765-connection-check-comprueba-conexion-internet-del-navegador' into 'develop'

Ent 9765 connection check comprueba conexion internet del navegador

See merge request artica/pandorafms!5254
This commit is contained in:
Daniel Rodriguez 2022-11-08 11:45:42 +00:00
commit 3423cddfd6

View File

@ -35,7 +35,6 @@ function handleConnection() {
return;
}
if (navigator.onLine) {
$.ajax({
url: homeurl + "include/connection_check.php",
type: "post",
@ -56,12 +55,6 @@ function handleConnection() {
showConnectionMessage(connected, msg);
});
} else {
// handle offline status
connected = false;
msg = "Connection offline";
showConnectionMessage(connected, msg);
}
}
/**