diff options
| author | Stephen Blott | 2016-05-07 04:37:36 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-05-07 04:37:36 +0100 | 
| commit | d00cc696c8e43b1b0298bce61fa18e22d78f270d (patch) | |
| tree | 0ca8c762ee6671ed4db43b0b45ba84f8f44e0e56 /content_scripts/hud.coffee | |
| parent | 62a3a7bb3568c3312abe693c267093994d143d4a (diff) | |
| parent | f83e99fd42a4cf412c79fb15c58f59c105c25723 (diff) | |
| download | vimium-d00cc696c8e43b1b0298bce61fa18e22d78f270d.tar.bz2 | |
Merge pull request #2118 from smblott-github/fix-ui-component-init-issues
Fix UI-component initialization issues (maybe).
Diffstat (limited to 'content_scripts/hud.coffee')
| -rw-r--r-- | content_scripts/hud.coffee | 16 | 
1 files changed, 9 insertions, 7 deletions
| diff --git a/content_scripts/hud.coffee b/content_scripts/hud.coffee index 0d3a6f95..b2780491 100644 --- a/content_scripts/hud.coffee +++ b/content_scripts/hud.coffee @@ -22,15 +22,17 @@ HUD =      @_showForDurationTimerId = setTimeout((=> @hide()), duration)    show: (text) -> -    @init() -    clearTimeout(@_showForDurationTimerId) -    @hudUI.activate {name: "show", text} -    @tween.fade 1.0, 150 +    DomUtils.documentComplete => +      @init() +      clearTimeout(@_showForDurationTimerId) +      @hudUI.activate {name: "show", text} +      @tween.fade 1.0, 150    showFindMode: (@findMode = null) -> -    @init() -    @hudUI.activate name: "showFindMode" -    @tween.fade 1.0, 150 +    DomUtils.documentComplete => +      @init() +      @hudUI.activate name: "showFindMode" +      @tween.fade 1.0, 150    search: (data) ->      @findMode.findInPlace data.query | 
