From 9742cee10745f256c66b52608090ddcc5107f33d Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Sat, 16 May 2015 12:29:33 +0100 Subject: Add insertText visual indicator. --- background_scripts/completion.coffee | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'background_scripts') diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee index c9a03629..66546708 100644 --- a/background_scripts/completion.coffee +++ b/background_scripts/completion.coffee @@ -45,14 +45,17 @@ class Suggestion return @html if @html relevancyHtml = if @showRelevancy then "#{@computeRelevancy()}" else "" # NOTE(philc): We're using these vimium-specific class names so we don't collide with the page's CSS. + insertTextClass = if @insertText then "vomnibarInsertText" else "vomnibarNoInsertText" + insertTextIndicator = "﹢" # A small plus sign. + insertTextIndicator = "﹥" # A small "greater than" sign. @html = """
""" -- cgit v1.2.3