diff options
| author | Stephen Blott | 2016-04-17 09:32:51 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-04-17 09:32:51 +0100 | 
| commit | 7e5b2dc0ca85f28c5aebce8686f6e7900ddf94f6 (patch) | |
| tree | cf9da523c2d5af3373af6f41cd4f29f67e1ed8ba /background_scripts | |
| parent | 9f91a3fc41a9ad97e1e92337819145e604ac4f34 (diff) | |
| download | vimium-7e5b2dc0ca85f28c5aebce8686f6e7900ddf94f6.tar.bz2 | |
Do not deduplicate javascript: URLs.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/completion.coffee | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee index db69f15c..5ceb515f 100644 --- a/background_scripts/completion.coffee +++ b/background_scripts/completion.coffee @@ -217,9 +217,10 @@ class BookmarkCompleter          queryTerms: @currentSearch.queryTerms          type: "bookmark"          url: bookmark.url -        displayUrl: bookmark.displayUrl          title: if usePathAndTitle then bookmark.pathAndTitle else bookmark.title          relevancyFunction: @computeRelevancy +        displayUrl: bookmark.displayUrl +        deDuplicate: not bookmark.displayUrl?      onComplete = @currentSearch.onComplete      @currentSearch = null      onComplete suggestions | 
