aboutsummaryrefslogtreecommitdiff
path: root/src/content/histories.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-17 13:27:35 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-17 13:27:35 +0900
commit78233b25b76df55d519f1d9082267aba876b4835 (patch)
tree05cea028a87f067a83d02638f187b92b3ec6ecd9 /src/content/histories.js
parentae317113e76b593949385102e6bea16e50c16ce5 (diff)
parentac8f7e65dc90327e05fb30fd5b20d56c3799f3d8 (diff)
Merge branch 'pagenation-and-navigation'
Diffstat (limited to 'src/content/histories.js')
-rw-r--r--src/content/histories.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/content/histories.js b/src/content/histories.js
deleted file mode 100644
index 9c5665d..0000000
--- a/src/content/histories.js
+++ /dev/null
@@ -1,8 +0,0 @@
-const prev = (win) => {
- win.history.back();
-};
-const next = (win) => {
- win.history.forward();
-};
-
-export { prev, next };