Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterirving committed Nov 18, 2024
1 parent 860f4e7 commit d9ae7c7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,7 @@

const blob = new Blob([swContent], {type: 'text/javascript'});
const swUrl = URL.createObjectURL(blob);
navigator.serviceWorker.register(swUrl, { scope: '/klaxon/' })
.then(function(registration) {
console.log('Service Worker registered with scope:', registration.scope);
})
.catch(function(error) {
console.log('Service Worker registration failed:', error);
});
navigator.serviceWorker.register(swUrl, { scope: '/klaxon/' });
}

// Disable device sleep while countdown is in progress
Expand Down

0 comments on commit d9ae7c7

Please sign in to comment.