[DE PE Embed] Bug 58292
This commit is contained in:
parent
33a05836db
commit
e313e6ca6e
|
@ -109,7 +109,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
var onInputSearchChange = function (text) {
|
var onInputSearchChange = function (text) {
|
||||||
if (_state.searchText !== text) {
|
if ((text && _state.searchText !== text) || (!text && _state.newSearchText)) {
|
||||||
_state.newSearchText = text;
|
_state.newSearchText = text;
|
||||||
_lastInputChange = (new Date());
|
_lastInputChange = (new Date());
|
||||||
if (_searchTimer === undefined) {
|
if (_searchTimer === undefined) {
|
||||||
|
|
|
@ -145,7 +145,7 @@ define([
|
||||||
|
|
||||||
onInputSearchChange: function (text) {
|
onInputSearchChange: function (text) {
|
||||||
var me = this;
|
var me = this;
|
||||||
if (this._state.searchText !== text) {
|
if ((text && this._state.searchText !== text) || (!text && this._state.newSearchText)) {
|
||||||
this._state.newSearchText = text;
|
this._state.newSearchText = text;
|
||||||
this._lastInputChange = (new Date());
|
this._lastInputChange = (new Date());
|
||||||
if (this.searchTimer === undefined) {
|
if (this.searchTimer === undefined) {
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
var onInputSearchChange = function (text) {
|
var onInputSearchChange = function (text) {
|
||||||
if (_state.searchText !== text) {
|
if ((text && _state.searchText !== text) || (!text && _state.newSearchText)) {
|
||||||
_state.newSearchText = text;
|
_state.newSearchText = text;
|
||||||
_lastInputChange = (new Date());
|
_lastInputChange = (new Date());
|
||||||
if (_searchTimer === undefined) {
|
if (_searchTimer === undefined) {
|
||||||
|
|
|
@ -142,7 +142,7 @@ define([
|
||||||
|
|
||||||
onInputSearchChange: function (text) {
|
onInputSearchChange: function (text) {
|
||||||
var me = this;
|
var me = this;
|
||||||
if (this._state.searchText !== text) {
|
if ((text && this._state.searchText !== text) || (!text && this._state.newSearchText)) {
|
||||||
this._state.newSearchText = text;
|
this._state.newSearchText = text;
|
||||||
this._lastInputChange = (new Date());
|
this._lastInputChange = (new Date());
|
||||||
if (this.searchTimer === undefined) {
|
if (this.searchTimer === undefined) {
|
||||||
|
|
Loading…
Reference in a new issue