BUG 6976 Adjustment the timeout component Suggest.

This commit is contained in:
Hector Cortez
2011-06-20 09:08:12 -04:00
parent c39eb93a60
commit 61afe9b5d7

View File

@@ -527,7 +527,7 @@ _b.AutoSuggest.prototype.resetTimeout = function()
{
clearTimeout(this.toID);
var pointer = this;
this.toID = setTimeout(function () { pointer.clearSuggestions() }, 10); // was modifiend,.. its original value was 1000 by 10 <-erik notes->
this.toID = setTimeout(function () { pointer.clearSuggestions() }, 500); // was modifiend,.. its original value was 1000 by 10 <-erik notes->
};
_b.AutoSuggest.prototype.clearSuggestions = function ()