Fix Bug 43647
This commit is contained in:
parent
d72fcfd6d1
commit
b738ce8540
|
@ -348,6 +348,8 @@ define([
|
||||||
this.onAfterHideMenu(e);
|
this.onAfterHideMenu(e);
|
||||||
return false;
|
return false;
|
||||||
} else if (this.search && e.keyCode > 64 && e.keyCode < 91 && e.key){
|
} else if (this.search && e.keyCode > 64 && e.keyCode < 91 && e.key){
|
||||||
|
if (typeof this._search !== 'object') return;
|
||||||
|
|
||||||
var me = this;
|
var me = this;
|
||||||
clearTimeout(this._search.timer);
|
clearTimeout(this._search.timer);
|
||||||
this._search.timer = setTimeout(function () { me._search = {}; }, 1000);
|
this._search.timer = setTimeout(function () { me._search = {}; }, 1000);
|
||||||
|
|
Loading…
Reference in a new issue