diff options
| author | Stephen Blott | 2017-10-27 15:31:34 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2017-10-27 15:31:34 +0100 | 
| commit | ed0a920e9000fabcad7eaf7f09e6360a5d2aa407 (patch) | |
| tree | bd71277f89cdc5482c2317b3f573152bc2ba54c0 | |
| parent | 9665f030fb339eb1dbe16d929e1b55e2537d8ac7 (diff) | |
| download | vimium-ed0a920e9000fabcad7eaf7f09e6360a5d2aa407.tar.bz2 | |
Fix #2738.
I omitted to check this properly.  It turns out we weren't getting the
options from the correct place.
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index c0df315e..86e3b682 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -353,7 +353,7 @@ extend root,  extend root,    reload: (count, options) -> -    hard = options?.hard +    hard = options.registryEntry.options.hard ? false      window.location.reload(hard)    goBack: (count) -> history.go(-count)    goForward: (count) -> history.go(count) | 
