Advertisement
libdo

Untitled

Sep 14th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. if (navigator.serviceWorker) {
  2. navigator.serviceWorker.register('/service_worker.js')
  3. .then(function() { console.log('registration') })
  4. .catch(function(e) {console.error(e) });
  5. } else {
  6. console.log('Service worker is not supported');
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement