1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
var cache=window.applicationCache;
//cache.addEventListener("checking",function(evt){
// alert("checking => status : "+cache.status);
//});
//cache.addEventListener("noupdate",function(evt){
// alert("noupdate => status : "+cache.status);
//});
cache.addEventListener("updateready",function(){
//alert("updateready => status : "+cache.status);
if (cache.status==cache.UPDATEREADY) {
//alert("Mise à jour disponible");
//so.msgbox("Mise à jour de l'application");
cache.swapCache();
//window.location.reload();
}
},false); |
Partager