We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 828d4c1 + 4909b48 commit 271cd2cCopy full SHA for 271cd2c
source/js/jquery-sortable.js
@@ -101,7 +101,7 @@
101
// Called on mousedown. If falsy value is returned, the dragging will not start.
102
// If clicked on input element, ignore
103
onMousedown: function ($item, _super, event) {
104
- if (event.target.nodeName != 'INPUT') {
+ if (event.target.nodeName != 'INPUT' && event.target.nodeName != 'SELECT') {
105
event.preventDefault()
106
return true
107
}
0 commit comments