I want a user to update their web app themselves when they ready so that even if they refresh the browser and there is a change to the manifest file it won't update. Is this possible?
I have even tried to abort it inside the event handler without any luck:
var appCache = window.applicationCache;
appCache.addEventListener('downloading', function() {
appCache.abort();
}, false);
appCache.addEventListener('checking', function() {
appCache.abort();
}, false);
appCache.abort();
These event handlers do get called but it does not abort the process and still downloads the new files. Any way round this or I am missing something perhaps?