未验证 提交 1a796461 编写于 作者: O owen-m1 提交者: GitHub

Merge pull request #1689 from kcak11/master

Added type check for 'dragStarted' variable as this is causing thousa…
......@@ -467,7 +467,7 @@ function MultiDragPlugin() {
},
_deselectMultiDrag(evt) {
if (dragStarted) return;
if (typeof dragStarted !== "undefined" && dragStarted) return;
// Only deselect if selection is in this sortable
if (multiDragSortable !== this.sortable) return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册