зеркало из https://github.com/mozilla/pjs.git
Fix bug # 46710: can only start a drag on <treeitem> nodes. r=me
This commit is contained in:
Родитель
122c15973d
Коммит
b895c1a84c
|
@ -192,6 +192,10 @@ function BeginDragTree ( event )
|
|||
if ( event.target == tree )
|
||||
return(true); // continue propagating the event
|
||||
|
||||
// only <treeitem>s can be dragged out
|
||||
if ( event.target.parentNode.parentNode.tagName != "treeitem")
|
||||
return(false);
|
||||
|
||||
var database = tree.database;
|
||||
if (!database) return(false);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче