diff options
| author | Stephen Blott | 2016-04-19 09:26:50 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-04-21 06:41:57 +0100 | 
| commit | 810dafcb7c4d76bf0bebfab12bbb869e0e19bd3a (patch) | |
| tree | c3374c49e0a9e65425eb1334461f53ca1edb4bff /content_scripts/vimium_frontend.coffee | |
| parent | ff2bb00565eb1111a5b2d5ced5f6405591ae7bc6 (diff) | |
| download | vimium-810dafcb7c4d76bf0bebfab12bbb869e0e19bd3a.tar.bz2 | |
Help dialog; remove ability to blur the dialog.
Previously, you could blur the help dialog on the options page (to read
and type command names).
With the reinstated help-dialog styling (whereby the help-dialog iframe
extends across the entire window), this doesn't make sense.  So it's
removed.
Diffstat (limited to 'content_scripts/vimium_frontend.coffee')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index a80093f9..68cd402d 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -630,10 +630,8 @@ window.HelpDialog ?=      if @isShowing()        @helpUI.hide()      else -      # On the options page, we allow the help dialog to blur, elsewhere we do not.  This allows users to view -      # the help dialog while typing in the key-mappings input.        @helpUI.activate extend request, -        name: "activate", focus: true, allowBlur: window.isVimiumOptionsPage ? false +        name: "activate", focus: true  initializePreDomReady()  DomUtils.documentReady initializeOnDomReady | 
