diff options
| author | Stephen Blott | 2016-03-27 12:35:36 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-27 12:35:36 +0100 | 
| commit | 3539ad89382c02bf2f89d890b86e49409059391f (patch) | |
| tree | dab8c34b92ab3a546130ed45bd0548cb217facde /content_scripts | |
| parent | 9c96f750f7c2d22eb0098dcb05b34c51c802e8ac (diff) | |
| download | vimium-3539ad89382c02bf2f89d890b86e49409059391f.tar.bz2 | |
Finally fix help-dialog focus issue.
In the previous commits, I omitted to actually check that the help
dialog wasn't closing on the options page.
I should be good now.
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/ui_component.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/ui_component.coffee b/content_scripts/ui_component.coffee index ac0bea71..4c9b18e1 100644 --- a/content_scripts/ui_component.coffee +++ b/content_scripts/ui_component.coffee @@ -76,7 +76,7 @@ class UIComponent          if event.target == window            window.removeEventListener "focus", @onFocus            @onFocus = null -          @postMessage "hide" +          @postMessage "frameFocused"        @showing = true    hide: (focusWindow = true)->  | 
