我正在尝试使用 Dragula 拖放库将元素克隆到目标容器中,并允许用户通过将克隆的元素拖放到目标容器之外来从目标容器中删除它们(溢出)。
使用提供的示例,我有这个:
dragula([$('left-copy-1tomany'), $('right-copy-1tomany')], {
copy: function (el, source) {
return source === $('left-copy-1tomany');
},
accepts: function (el, target) {
return target !== $('left-copy-1tomany');
}
});
dragula([$('right-copy-1tomany')], { removeOnSpill: true });
哪个不起作用 - 如果容器接受副本,'removeOnSpill' 似乎根本不起作用。
有谁知道我没有做什么,做错了什么或者是否有解决方法?
蒂亚!