diff options
| author | Jez Ng | 2012-09-04 15:23:29 -0400 | 
|---|---|---|
| committer | Jez Ng | 2012-09-04 15:23:29 -0400 | 
| commit | eb0955875ba6ba77a90b1e411c42be0df6de950d (patch) | |
| tree | 45aac8cd0e19e209cf37c199a7c89b3972f63df9 /background_scripts/completion.coffee | |
| parent | 525276bde9b99d05b133f96f21e1ac187c068bb6 (diff) | |
| download | vimium-eb0955875ba6ba77a90b1e411c42be0df6de950d.tar.bz2 | |
Style fixes.
Errors were detected using coffeelint.
Diffstat (limited to 'background_scripts/completion.coffee')
| -rw-r--r-- | background_scripts/completion.coffee | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee index 5920db0b..5539f7c7 100644 --- a/background_scripts/completion.coffee +++ b/background_scripts/completion.coffee @@ -26,7 +26,7 @@ class Suggestion    generateHtml: ->      return @html if @html -    relevancyHtml = if @showRelevancy then "<span class='relevancy'>#{@computeRelevancy() + ''}</span>" else "" +    relevancyHtml = if @showRelevancy then "<span class='relevancy'>#{@computeRelevancy()}</span>" else ""      # NOTE(philc): We're using these vimium-specific class names so we don't collide with the page's CSS.      @html =        "<div class='vimiumReset vomnibarTopHalf'> @@ -90,7 +90,7 @@ class BookmarkCompleter    performSearch: ->      results = @bookmarks.filter (bookmark) => -        RankingUtils.matches(@currentSearch.queryTerms, bookmark.url, bookmark.title) +      RankingUtils.matches(@currentSearch.queryTerms, bookmark.url, bookmark.title)      suggestions = results.map (bookmark) =>        new Suggestion(@currentSearch.queryTerms, "bookmark", bookmark.url, bookmark.title, @computeRelevancy)      onComplete = @currentSearch.onComplete | 
