Skip to content

Commit

Permalink
Added missing e.stopImmediatePropagation() call in tap handler.
Browse files Browse the repository at this point in the history
Otherwise, this leaked event causes issues when this component is loaded inside a `<paper-drawer-panel>`.
PolymerElements/paper-drawer-panel#92
  • Loading branch information
John Yanarella committed Feb 8, 2017
1 parent 4d2fce7 commit 708be8a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions radium-combo.html
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,8 @@
}
},
_selectItem: function(e) {
e.stopImmediatePropagation();

var item = e.currentTarget;
this.setValue(item.value, true);
this._hideDropdown();
Expand Down

0 comments on commit 708be8a

Please sign in to comment.