aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/mode_normal.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts/mode_normal.coffee')
-rw-r--r--content_scripts/mode_normal.coffee5
1 files changed, 1 insertions, 4 deletions
diff --git a/content_scripts/mode_normal.coffee b/content_scripts/mode_normal.coffee
index 1fe0618e..0cfcfc66 100644
--- a/content_scripts/mode_normal.coffee
+++ b/content_scripts/mode_normal.coffee
@@ -59,10 +59,7 @@ NormalModeCommands =
scrollLeft: (count) -> Scroller.scrollBy "x", -1 * Settings.get("scrollStepSize") * count
scrollRight: (count) -> Scroller.scrollBy "x", Settings.get("scrollStepSize") * count
- # Page state.
- reload: (count, options) ->
- hard = options.registryEntry.options.hard ? false
- window.location.reload(hard)
+ # Tab navigation: back, forward.
goBack: (count) -> history.go(-count)
goForward: (count) -> history.go(count)