Skip to content

Instantly share code, notes, and snippets.

View anitawoodruff's full-sized avatar
😁

Anita W anitawoodruff

😁
View GitHub Profile
@anitawoodruff
anitawoodruff / index.html
Last active February 5, 2018 17:30 — forked from johnmellor/index.html
Notification text action demo
<!doctype html>
<!-- View this at https://rawgit.com/anitawoodruff/b41cad489dba75cdbaf2ea942450cd1f/raw/ -->
<meta name=viewport content="initial-scale=1">
<a href="https://gist.github.com/anitawoodruff/b41cad489dba75cdbaf2ea942450cd1f">View code</a><br><br>
<button id="myButton">Show notification</button>
<script>
navigator.serviceWorker.register('sw.js');
document.getElementById('myButton').addEventListener('click', event => {
navigator.serviceWorker.ready.then(swRegistration => {
Notification.requestPermission(permission => {