diff options
| author | Stephen Blott | 2016-03-08 15:13:27 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-03-08 15:13:27 +0000 |
| commit | e102c5e526e6257a5ea8add54c0aa9efad2961b8 (patch) | |
| tree | 4311e5f2559430a1975864192d9a904124ea45e5 | |
| parent | 3498f725b2a9ac8b155acc117aac8fba2cf01b16 (diff) | |
| parent | 2c874e3a740f9869dae4134e355451f692421298 (diff) | |
| download | vimium-e102c5e526e6257a5ea8add54c0aa9efad2961b8.tar.bz2 | |
Merge pull request #2043 from smblott-github/fix-2038
Fix focus issue with UI components (#2038)
| -rw-r--r-- | content_scripts/ui_component.coffee | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content_scripts/ui_component.coffee b/content_scripts/ui_component.coffee index efc16f99..d381cb0f 100644 --- a/content_scripts/ui_component.coffee +++ b/content_scripts/ui_component.coffee @@ -87,6 +87,7 @@ class UIComponent @onFocus = null @iframeElement.classList.remove "vimiumUIComponentVisible" @iframeElement.classList.add "vimiumUIComponentHidden" + @iframeElement.blur() @options = null @showing = false |
