diff options
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 41fb772b..b7acf433 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -1120,6 +1120,8 @@ window.showHelpDialog = (html, fid) ->        chrome.runtime.sendMessage({handler: "openOptionsPageInNewTab"})      false) +  # Simulating a click on the help dialog makes it the active element for scrolling. +  DomUtils.simulateClick document.getElementById "vimiumHelpDialog"  hideHelpDialog = (clickEvent) ->    isShowingHelpDialog = false | 
