From cfac8ab3e1e43f39ca3f3fa4780a07e87b683927 Mon Sep 17 00:00:00 2001 From: Benny Powers Date: Wed, 10 Jan 2018 12:34:09 +0200 Subject: [PATCH] Don't stop event propagation unless instructed to. Allows consuming components to process key events as needed. --- iron-menu-behavior.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iron-menu-behavior.html b/iron-menu-behavior.html index 8cd8caf..76308c4 100644 --- a/iron-menu-behavior.html +++ b/iron-menu-behavior.html @@ -389,7 +389,7 @@ // all other keys focus the menu item starting with that character this._focusWithKeyboardEvent(event); } - event.stopPropagation(); + if (this.stopKeyboardEventPropagation) event.stopPropagation(); }, // override _activateHandler