mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
13 lines
387 B
JavaScript
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'
|
|
}
|
|
}; |