Fix Bug 34586
This commit is contained in:
parent
1ed460fc1f
commit
665331f0d1
|
@ -213,6 +213,8 @@ define([
|
||||||
}, 10);
|
}, 10);
|
||||||
} else
|
} else
|
||||||
me._skipInputChange = false;
|
me._skipInputChange = false;
|
||||||
|
} else if (e.keyCode == Common.UI.Keys.RETURN && this._input.val() === me.lastValue){
|
||||||
|
this._input.trigger('change', { reapply: true });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -233,7 +235,7 @@ define([
|
||||||
var val = $(e.target).val(),
|
var val = $(e.target).val(),
|
||||||
record = {};
|
record = {};
|
||||||
|
|
||||||
if (this.lastValue === val) {
|
if (this.lastValue === val && !(extra && extra.reapply)) {
|
||||||
if (extra && extra.onkeydown)
|
if (extra && extra.onkeydown)
|
||||||
this.trigger('combo:blur', this, e);
|
this.trigger('combo:blur', this, e);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue