1 2 3 4 5 6 7 8 9 10 11
<!DOCTYPE html> <script> function done() { parent.callback(); } navigator.serviceWorker.ready.then(done); navigator.serviceWorker.register("../notification_get_sw.js", {scope: "."}).catch(function(e) { dump("Registration failure " + e.message + "\n"); }); </script>