Browse Source

Merge pull request #200 from softcup/master

fixed appCache.update error.
master
Igor Zhukov 10 years ago
parent
commit
d9a5b46e2a
  1. 6
      app/index.html

6
app/index.html

@ -31,7 +31,11 @@ @@ -31,7 +31,11 @@
scheduleUpdate = function (delay) {
clearTimeout(updateTimeout);
updateTimeout = setTimeout(function () {
appCache.update();
try {
appCache.update();
} catch (ex) {
console.log('appCache.update: ' + ex);
}
}, delay || 300000);
},
attach = function () {

Loading…
Cancel
Save