aboutsummaryrefslogtreecommitdiff
path: root/src/content/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/index.js')
-rw-r--r--src/content/index.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/content/index.js b/src/content/index.js
index 78389fd..2bbe39c 100644
--- a/src/content/index.js
+++ b/src/content/index.js
@@ -1,7 +1,8 @@
import * as scrolls from './scrolls';
+import * as histories from './histories';
+import * as actions from '../shared/actions';
import FooterLine from './footer-line';
import Follow from './follow';
-import * as actions from '../shared/actions';
var footer = null;
@@ -56,6 +57,12 @@ const invokeEvent = (action) => {
case actions.FOLLOW_START:
new Follow(window.document, action[1] || false);
break;
+ case actions.HISTORY_PREV:
+ histories.prev(window);
+ break;
+ case actions.HISTORY_NEXT:
+ histories.next(window);
+ break;
}
}