aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/vomnibar.coffee
diff options
context:
space:
mode:
authorJez Ng2012-10-29 17:34:51 -0400
committerJez Ng2012-10-29 17:35:37 -0400
commit0964cf83b338915f9c0e3e0b581e4995ba4fb742 (patch)
tree6941da4d87c41b62194ab5a0249f238ac7dc8bb3 /content_scripts/vomnibar.coffee
parentba3f283e90c95d7b03e585098567606be1064937 (diff)
downloadvimium-0964cf83b338915f9c0e3e0b581e4995ba4fb742.tar.bz2
More tests, because I like having coverage.
Diffstat (limited to 'content_scripts/vomnibar.coffee')
-rw-r--r--content_scripts/vomnibar.coffee5
1 files changed, 3 insertions, 2 deletions
diff --git a/content_scripts/vomnibar.coffee b/content_scripts/vomnibar.coffee
index 31e58f15..6f4527fd 100644
--- a/content_scripts/vomnibar.coffee
+++ b/content_scripts/vomnibar.coffee
@@ -121,7 +121,7 @@ class VomnibarUI
@completions[@selection].performAction(openInNewTab)
@hide()
- # It seems like we have to manually supress the event here and still return true.
+ # It seems like we have to manually suppress the event here and still return true.
event.stopPropagation()
event.preventDefault()
true
@@ -180,7 +180,8 @@ class VomnibarUI
# Sends filter and refresh requests to a Vomnibox completer on the background page.
#
class BackgroundCompleter
- # - name: The background page completer that you want to interface with. Either "omni" or "tabs". */
+ # - name: The background page completer that you want to interface with. Either "omni", "tabs", or
+ # "bookmarks". */
constructor: (@name) ->
@filterPort = chrome.extension.connect({ name: "filterCompleter" })