mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-31 21:45:46 +01:00
Remove dump statements.
--HG-- branch : key-processing
This commit is contained in:
@@ -481,13 +481,6 @@ var CompletionContext = Class("CompletionContext", {
|
|||||||
let filtered = this.filterFunc(this._cache.constructed);
|
let filtered = this.filterFunc(this._cache.constructed);
|
||||||
if (this.maxItems)
|
if (this.maxItems)
|
||||||
filtered = filtered.slice(0, this.maxItems);
|
filtered = filtered.slice(0, this.maxItems);
|
||||||
if (/types/.test(this.name)) {
|
|
||||||
let self = this;
|
|
||||||
util.dump(this.filters[1]);
|
|
||||||
util.dump("FILTERED", this._cache.constructed.map(function (item) [item.text.quote(), self.filters[0].call(self, item.text)]));
|
|
||||||
util.dump("FILTERED", this._cache.constructed.map(function (item)
|
|
||||||
self.filters.map(function (filter) filter.call(self, item))));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Sorting
|
// Sorting
|
||||||
if (this.sortResults && this.compare)
|
if (this.sortResults && this.compare)
|
||||||
|
|||||||
Reference in New Issue
Block a user