aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/vomnibar.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts/vomnibar.coffee')
-rw-r--r--content_scripts/vomnibar.coffee10
1 files changed, 2 insertions, 8 deletions
diff --git a/content_scripts/vomnibar.coffee b/content_scripts/vomnibar.coffee
index 6b82d31c..0d5197a5 100644
--- a/content_scripts/vomnibar.coffee
+++ b/content_scripts/vomnibar.coffee
@@ -37,12 +37,8 @@ Vomnibar =
init: ->
unless @vomnibarUI?
- @vomnibarUI = new UIComponent "pages/vomnibar.html", "vomnibarFrame", @handleMessage.bind this
-
- handleMessage: (event) ->
- if event.data == "hide"
- @hide()
-
+ @vomnibarUI = new UIComponent "pages/vomnibar.html", "vomnibarFrame", =>
+ @vomnibarUI.hide()
# This function opens the vomnibar. It accepts options, a map with the values:
# completer - The completer to fetch results from.
@@ -51,7 +47,5 @@ Vomnibar =
# newTab - Optional, boolean. Whether to open the result in a new tab.
open: (options) -> @vomnibarUI.activate options
- hide: -> @vomnibarUI?.hide()
-
root = exports ? window
root.Vomnibar = Vomnibar