Skip to content

stopKeyboardEventPropagation does not seem to be working... #65

@sander76

Description

@sander76

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();
            }
        },

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions