Commit 1ed4cce0 authored by Roque's avatar Roque

erp5_officejs_appstore_base: handle service worker registration error

parent e89e053a
/*globals window, document, RSVP, rJS, navigator*/
/*globals window, document, RSVP, rJS, navigator, console*/
/*jslint indent: 2, maxlen: 80, nomen: true*/
(function (window, document, RSVP, rJS, navigator) {
(function (window, document, RSVP, rJS, navigator, console) {
"use strict";
rJS(window)
......@@ -13,9 +13,14 @@
// Make this redirection compatible with no-service-worker browsers
if ('serviceWorker' in navigator) {
queue.push(function () {
return navigator.serviceWorker.register(
"gadget_erp5_serviceworker.js");
});
return navigator.serviceWorker
.register("gadget_erp5_serviceworker.js");
})
.push(undefined, function (error) {
// If service worker installation is rejected,
// do not prevent the site to be usable, even if slower
console.warn("Service worker registration failed", error);
});
}
return queue
.push(function () {
......@@ -24,4 +29,4 @@
});
});
}(window, document, RSVP, rJS, navigator));
\ No newline at end of file
}(window, document, RSVP, rJS, navigator, console));
\ No newline at end of file
......@@ -244,7 +244,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>996.52764.3468.58419</string> </value>
<value> <string>997.60607.41300.1194</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -262,7 +262,7 @@
</tuple>
<state>
<tuple>
<float>1639416568.49</float>
<float>1643817599.53</float>
<string>UTC</string>
</tuple>
</state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment