offline-editor-js/lib/edit/offlineJSOptions.js
2015-11-19 17:48:03 -07:00

13 lines
387 B
JavaScript

// Configure offline/online detection
// Requires: http://github.hubspot.com/offline/docs/welcome/
Offline.options = { // jshint ignore:line
checks: {
image: {
url: function() {
return 'http://esri.github.io/offline-editor-js/tiny-image.png?_=' + (Math.floor(Math.random() * 1000000000));
}
},
active: 'image'
}
};