We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b99f04 commit 0f221c6Copy full SHA for 0f221c6
TODO
@@ -1,4 +1,6 @@
1
-- [0/0] bugs
+- [0/2] bugs
2
+ - [ ] last Pointer is NaN in search valid target
3
+ - [ ] prevent infinite recursion
4
- [0/5] consider
5
- [ ] better name for searchValidTarget
6
- [ ] shortcut on getNearest()
source/js/jquery-sortable.js
@@ -215,7 +215,7 @@
215
216
ContainerGroup.get = function (options) {
217
if( !containerGroups[options.group]) {
218
- if(!options.group)
+ if(options.group === undefined)
219
options.group = groupCounter ++
220
containerGroups[options.group] = new ContainerGroup(options)
221
}
0 commit comments