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.coffee6
1 files changed, 3 insertions, 3 deletions
diff --git a/content_scripts/vomnibar.coffee b/content_scripts/vomnibar.coffee
index ac02dfca..0b96d2bb 100644
--- a/content_scripts/vomnibar.coffee
+++ b/content_scripts/vomnibar.coffee
@@ -67,7 +67,7 @@ class VomnibarUI
if (@completions.length > 0)
@selection = Math.min(@selection, @completions.length - 1)
for i in [0...@completionList.children.length]
- @completionList.children[i].className = (if i == @selection then "selected" else "")
+ @completionList.children[i].className = (if i == @selection then "vomnibarSelected" else "")
#
# Returns the user's action ("up", "down", "enter", "dismiss" or null) based on their keypress.
@@ -158,8 +158,8 @@ class VomnibarUI
initDom: ->
@box = Utils.createElementFromHtml(
'<div id="vomnibar" class="vimiumReset">' +
- '<div class="searchArea">' +
- '<input type="text" />' +
+ '<div class="vimiumReset vomnibarSearchArea">' +
+ '<input type="text" class="vimiumReset" />' +
'</div>' +
'<ul></ul>' +
'</div>')