diff options
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 3beab455..99d8fc4a 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -438,7 +438,7 @@ initializeTopFrame = (request = null) -> initializeTopFrame = -> # Only do this initialization once. # We only initialize the vomnibar in the tab's top/main frame, because it's only ever opened there. if DomUtils.isTopFrame() - DomUtils.documentReady -> Vomnibar.init() + DomUtils.documentReady Vomnibar.init.bind Vomnibar else # Ignore requests from other frames (we're not the top frame). unless request? |
