Merge "Fix ctrl+enter shortcut in reply dialog"
This commit is contained in:
commit
e69ab2040a
@ -15,8 +15,8 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<link rel="import" href="../../../bower_components/polymer/polymer.html">
|
<link rel="import" href="../../../bower_components/polymer/polymer.html">
|
||||||
<link rel="import" href="../../../bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
|
|
||||||
<link rel="import" href="../../../bower_components/paper-input/paper-input.html">
|
<link rel="import" href="../../../bower_components/paper-input/paper-input.html">
|
||||||
|
<link rel="import" href="../../../behaviors/keyboard-shortcut-behavior/keyboard-shortcut-behavior.html">
|
||||||
<link rel="import" href="../../shared/gr-autocomplete-dropdown/gr-autocomplete-dropdown.html">
|
<link rel="import" href="../../shared/gr-autocomplete-dropdown/gr-autocomplete-dropdown.html">
|
||||||
<link rel="import" href="../../shared/gr-cursor-manager/gr-cursor-manager.html">
|
<link rel="import" href="../../shared/gr-cursor-manager/gr-cursor-manager.html">
|
||||||
<link rel="import" href="../../shared/gr-icons/gr-icons.html">
|
<link rel="import" href="../../shared/gr-icons/gr-icons.html">
|
||||||
|
@ -165,6 +165,10 @@
|
|||||||
_selected: Object,
|
_selected: Object,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
behaviors: [
|
||||||
|
Gerrit.KeyboardShortcutBehavior,
|
||||||
|
],
|
||||||
|
|
||||||
observers: [
|
observers: [
|
||||||
'_maybeOpenDropdown(_suggestions, _focused)',
|
'_maybeOpenDropdown(_suggestions, _focused)',
|
||||||
'_updateSuggestions(text, threshold, noDebounce)',
|
'_updateSuggestions(text, threshold, noDebounce)',
|
||||||
@ -305,6 +309,7 @@
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 13: // Enter
|
case 13: // Enter
|
||||||
|
if (this.modifierPressed(e)) { break; }
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
this._handleInputCommit();
|
this._handleInputCommit();
|
||||||
break;
|
break;
|
||||||
|
@ -496,6 +496,18 @@ limitations under the License.
|
|||||||
assert.isTrue(listener.called);
|
assert.isTrue(listener.called);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('enter with modifier does not complete', () => {
|
||||||
|
const handleSpy = sandbox.spy(element, '_handleKeydown');
|
||||||
|
const commitStub = sandbox.stub(element, '_handleInputCommit');
|
||||||
|
MockInteractions.pressAndReleaseKeyOn(
|
||||||
|
element.$.input, 13, 'ctrl', 'enter');
|
||||||
|
assert.isTrue(handleSpy.called);
|
||||||
|
assert.isFalse(commitStub.called);
|
||||||
|
MockInteractions.pressAndReleaseKeyOn(
|
||||||
|
element.$.input, 13, null, 'enter');
|
||||||
|
assert.isTrue(commitStub.called);
|
||||||
|
});
|
||||||
|
|
||||||
suite('warnUncommitted', () => {
|
suite('warnUncommitted', () => {
|
||||||
let inputClassList;
|
let inputClassList;
|
||||||
setup(() => {
|
setup(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user