diff --git a/packages/button/src/LionButton.js b/packages/button/src/LionButton.js index 1fbd05943..ef76bf78a 100644 --- a/packages/button/src/LionButton.js +++ b/packages/button/src/LionButton.js @@ -185,10 +185,6 @@ export class LionButton extends DisabledWithTabIndexMixin(SlotMixin(LitElement)) * without side effects caused by the click bubbling back up to lion-button. */ __clickDelegationHandler(e) { - if (this.constructor.__isIE11()) { - e.stopPropagation(); - } - if ((this.type === 'submit' || this.type === 'reset') && e.target === this) { if (this._form) { const nativeButton = document.createElement('button');