mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 16:02:46 +08:00
Merge pull request #652 from ONLYOFFICE/fix/bug-48260
[DE] Fix Bug 48260
This commit is contained in:
@ -131,6 +131,8 @@ define([
|
||||
if ($(e.target).closest('input').length) { // enter in input field
|
||||
if (this.lastValue !== this._input.val())
|
||||
this._input.trigger('change');
|
||||
else
|
||||
return true;
|
||||
} else { // enter in dropdown list
|
||||
$(e.target).click();
|
||||
if (this.rendered) {
|
||||
@ -139,7 +141,7 @@ define([
|
||||
else
|
||||
this._input.blur();
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
} else if (e.keyCode == Common.UI.Keys.ESC && this.isMenuOpen()) {
|
||||
this._input.val(this.lastValue);
|
||||
|
||||
Reference in New Issue
Block a user