We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 435b536 + 70be47d commit 79e031fCopy full SHA for 79e031f
1 file changed
select2.js
@@ -788,7 +788,7 @@ the specific language governing permissions and limitations under the Apache Lic
788
// for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's
789
// dom it will trigger the popup close, which is not what we want
790
// focusin can cause focus wars between modals and select2 since the dropdown is outside the modal.
791
- this.dropdown.on("click mouseup mousedown focusin", function (e) { e.stopPropagation(); });
+ this.dropdown.on("click mouseup mousedown touchstart touchend focusin", function (e) { e.stopPropagation(); });
792
793
this.nextSearchTerm = undefined;
794
0 commit comments