1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 05:57:58 +01:00

Move "Waiting..." message to the end of the completion list

This commit is contained in:
Kris Maglione
2008-11-28 16:29:40 +00:00
parent cdbca97f0c
commit d6d65d5563
3 changed files with 10 additions and 10 deletions

View File

@@ -201,8 +201,8 @@ CompletionContext.prototype = {
this.process = format.process || this.process;
},
get message() this._message || (this.incomplete ? "Waiting..." : null),
set message(val) this._message = val,
//get message() this._message || (this.incomplete ? "Waiting..." : null),
//set message(val) this._message = val,
get regenerate() this._generate && (!this.completions || !this.itemCache[this.key] || this.cache.offset != this.offset),
set regenerate(val) { if (val) delete this.itemCache[this.key] },