This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener('load', function(e) { | |
log("Window <em>load</em> event"); | |
var appCache = window.applicationCache; | |
// Fired after the first cache of the manifest. | |
appCache.addEventListener('cached', handleCacheEvent, false); | |
// Checking for an update. Always the first event fired in the sequence. |