Skip to content

Commit 9a84adb

Browse files
fix(addon/components/paper-checkbox): ensure event exists.
1 parent c488d6f commit 9a84adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/components/paper-checkbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export default class PaperCheckbox extends Focusable {
136136
}
137137

138138
// Prevent bubbling, if specified. If undefined, the event will bubble.
139-
if (!this.bubbles) {
139+
if (!this.bubbles && e) {
140140
e.stopPropagation();
141141
}
142142
}

0 commit comments

Comments
 (0)