aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/vomnibar.coffee
diff options
context:
space:
mode:
authorStephen Blott2016-04-18 05:39:01 +0100
committerStephen Blott2016-04-18 05:39:01 +0100
commit8846d04f3043e4be4be3d8e63c1efb46fe7e0b0e (patch)
treebe4e76270a1b0fdffc58c1a706cc4983e57b23d9 /content_scripts/vomnibar.coffee
parentc01d7eea8675f9a7d84999777e8de72244d687b6 (diff)
downloadvimium-8846d04f3043e4be4be3d8e63c1efb46fe7e0b0e.tar.bz2
Revert "UI-compnent commands must wait for the document to be ready."
This reverts commit c01d7eea8675f9a7d84999777e8de72244d687b6. Preparatory to implementing an alternative approach.
Diffstat (limited to 'content_scripts/vomnibar.coffee')
-rw-r--r--content_scripts/vomnibar.coffee9
1 files changed, 4 insertions, 5 deletions
diff --git a/content_scripts/vomnibar.coffee b/content_scripts/vomnibar.coffee
index 292cedc7..cbd2892c 100644
--- a/content_scripts/vomnibar.coffee
+++ b/content_scripts/vomnibar.coffee
@@ -56,11 +56,10 @@ Vomnibar =
# selectFirst - Optional, boolean. Whether to select the first entry.
# newTab - Optional, boolean. Whether to open the result in a new tab.
open: (sourceFrameId, options) ->
- DomUtils.ifDocumentIsReady =>
- @init()
- # The Vomnibar cannot coexist with the help dialog (it causes focus issues).
- HelpDialog.abort()
- @vomnibarUI.activate extend options, { name: "activate", sourceFrameId, focus: true }
+ @init()
+ # The Vomnibar cannot coexist with the help dialog (it causes focus issues).
+ HelpDialog.abort()
+ @vomnibarUI.activate extend options, { name: "activate", sourceFrameId, focus: true }
root = exports ? window
root.Vomnibar = Vomnibar