diff options
author | Mantas <11616378+mistermantas@users.noreply.github.com> | 2018-07-24 17:04:23 +0300 |
---|---|---|
committer | Mantas <11616378+mistermantas@users.noreply.github.com> | 2018-07-24 17:04:23 +0300 |
commit | aacd468d9e5cae4e689f9f70e932d9a496d6a6ba (patch) | |
tree | d4e62c6fcde9439f6026f89c813ec93a16057acb | |
parent | 88a199b6c0576a35bae67a241c20370b629dd7cd (diff) |
Netlify CMS stuff
-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(); - } -}); |