提交 750174a1 编写于 作者: L Lebedev Konstantin 提交者: GitHub

Merge pull request #961 from n-sviridenko/patch-1

Update Sortable.js
......@@ -1002,13 +1002,18 @@
return el;
}
}
while (el = ('host' in el) ? el.host : el.parentNode)
while (el = _getParentOrHost(el))
}
return null;
}
function _getParentOrHost(el) {
var parent = el.host;
return (parent && parent.nodeType) ? parent : el.parentNode;
}
function _globalDragOver(/**Event*/evt) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册