summaryrefslogtreecommitdiff
path: root/js/index.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-02-26 00:14:30 +0300
committerAndrew Dolgov <[email protected]>2017-02-26 00:14:30 +0300
commitb8ae4b31c129031e89e4c7fb9801d6761513dd73 (patch)
tree4522dc5c059837a8c143c2a90c1dc562db0915ff /js/index.js
parentf858879a3d13bcec694a5e2493fbfe3a1a233e13 (diff)
experimental service worker offline stuff
Diffstat (limited to 'js/index.js')
-rw-r--r--js/index.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/index.js b/js/index.js
new file mode 100644
index 0000000..e76be90
--- /dev/null
+++ b/js/index.js
@@ -0,0 +1,13 @@
+function offline_cache(elem) {
+ try {
+ var bookId = elem.getAttribute("data-book-id");
+
+ console.log(bookId);
+
+
+ return false;
+
+ } catch (e) {
+ console.warn(e);
+ }
+}