You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shouldn't the _onKeydown function implement a check for stopKeyboardEventPropagation for it to work ?
_onKeydown: function(event) {
if (!this.keyboardEventMatchesKeys(event, 'up down esc')) {
// all other keys focus the menu item starting with that character
this._focusWithKeyboardEvent(event);
}
// added stopKeyboardEventPropagation
if (this.stopKeyboardEventPropagation) {
event.stopPropagation();
}
},
The text was updated successfully, but these errors were encountered:
shouldn't the _onKeydown function implement a check for
stopKeyboardEventPropagation
for it to work ?The text was updated successfully, but these errors were encountered: