diff options
-rw-r--r-- | exampleSite/static/img/README.md | 1 | ||||
-rw-r--r-- | static/sw.js | 14 |
2 files changed, 1 insertions, 14 deletions
diff --git a/exampleSite/static/img/README.md b/exampleSite/static/img/README.md new file mode 100644 index 0000000..5f250f1 --- /dev/null +++ b/exampleSite/static/img/README.md @@ -0,0 +1 @@ +For users of Netlify CMS with cState, `static/img` is the media folder in the config. diff --git a/static/sw.js b/static/sw.js deleted file mode 100644 index e778677..0000000 --- a/static/sw.js +++ /dev/null @@ -1,14 +0,0 @@ -'use strict'; - -self.addEventListener('notificationclick', function(e) { - var notification = e.notification; - var primaryKey = notification.data.primaryKey; - var action = e.action; - - if (action === 'close') { - notification.close(); - } else { - clients.openWindow(permalink); - notification.close(); - } -}); |