diff --git a/public/test/select-multiple.html b/public/test/select-multiple.html index e860d20..30e076d 100644 --- a/public/test/select-multiple.html +++ b/public/test/select-multiple.html @@ -16,12 +16,12 @@ - + - - + + diff --git a/public/test/select-one.html b/public/test/select-one.html index de37a75..54657f0 100644 --- a/public/test/select-one.html +++ b/public/test/select-one.html @@ -16,12 +16,12 @@ - + - - + + diff --git a/public/test/text.html b/public/test/text.html index 1d4ea24..f2e8003 100644 --- a/public/test/text.html +++ b/public/test/text.html @@ -16,12 +16,12 @@ - + - - + + diff --git a/src/scripts/choices.js b/src/scripts/choices.js index fa0d200..1b2ea16 100644 --- a/src/scripts/choices.js +++ b/src/scripts/choices.js @@ -1390,7 +1390,7 @@ class Choices { _onMouseDown(event) { const { target, shiftKey } = event; // If we have our mouse down on the scrollbar and are on IE11... - if (target === this.choiceList && isIE11()) { + if (this.choiceList.element.contains(target) && isIE11()) { this._isScrollingOnIe = true; }