Commit 6d981df4 authored by Julia Radzhabova's avatar Julia Radzhabova

Fix Bug 32997.

parent 2c3891c2
...@@ -312,6 +312,8 @@ define([ ...@@ -312,6 +312,8 @@ define([
me._skipInputChange = true; me._skipInputChange = true;
me.cmpEl.find('ul li:first a').focus(); me.cmpEl.find('ul li:first a').focus();
}, 10); }, 10);
} else if (e.keyCode == Common.UI.Keys.RETURN && $(e.target).val() === me.lastValue){
this._input.trigger('change', { reapply: true });
} else } else
me._skipInputChange = false; me._skipInputChange = false;
}, },
...@@ -333,7 +335,7 @@ define([ ...@@ -333,7 +335,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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment