if (!("Notification" in window)) {
alert("Este Navegador no soportar notificaciones en el escritorio");
}
else if (Notification.permission === "granted") {
var n = new Notification("Chat_ISB", {body: "No has configurado tu sesion para el Chat",icon:"http://"+localStorage.getItem('conexion')+"/escaneopt/app_chat/icon.png"});
n.onshow = function () {
var audio=new Audio('http://'+localStorage.getItem('conexion')+'/escaneopt/app_chat/sound/error.mp3');
audio.play();
setTimeout(n.close.bind(n), 5000);
}
}
else if (Notification.permission !== 'denied') {
Notification.requestPermission(function (permission) {
if (!('permission' in Notification)) {
Notification.permission = permission;
}
if (permission === "granted") {
var n = new Notification("Chat_ISB", {body: "No has configurado tu sesion para el Chat",icon:"http://"+localStorage.getItem('conexion')+"/escaneopt/app_chat/icon.png"});
n.onshow = function () {
var audio=new Audio('http://'+localStorage.getItem('conexion')+'/escaneopt/app_chat/sound/error.mp3');
audio.play();
setTimeout(n.close.bind(n), 5000);
}
}
});
}