From ed0a920e9000fabcad7eaf7f09e6360a5d2aa407 Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Fri, 27 Oct 2017 15:31:34 +0100 Subject: Fix #2738. I omitted to check this properly. It turns out we weren't getting the options from the correct place. --- content_scripts/vimium_frontend.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3