diff options
| author | Stephen Blott | 2015-05-09 11:30:59 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-05-09 14:11:31 +0100 |
| commit | d73775057d443a53668f6a93fe45cc4a4b412de7 (patch) | |
| tree | 34deac62bca83c11b60cfe4c1987ffe21073e8fd /background_scripts | |
| parent | 75051d53536ddb9f247501b4509306cae1734184 (diff) | |
| download | vimium-d73775057d443a53668f6a93fe45cc4a4b412de7.tar.bz2 | |
Search completion; complete commmon search term.
Diffstat (limited to 'background_scripts')
| -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 8c73c658..850a257d 100644 --- a/background_scripts/completion.coffee +++ b/background_scripts/completion.coffee @@ -547,7 +547,7 @@ class MultiCompleter unless suggestions.length == 0 and shouldRunContinuations onComplete results: @prepareSuggestions queryTerms, suggestions - mayCacheResult: continuations.length == 0 + mayCacheResults: continuations.length == 0 # Run any continuations, unless there's a pending query. if shouldRunContinuations @@ -560,7 +560,7 @@ class MultiCompleter results: @prepareSuggestions queryTerms, suggestions # FIXME(smblott) This currently assumes that there is at most one continuation. We # should really be counting pending/completed continuations. - mayCacheResult: true + mayCacheResults: true # Admit subsequent queries, and launch any pending query. @filterInProgress = false |
