Fix bug # 46710: can only start a drag on <treeitem> nodes. r=me

This commit is contained in:
rjc%netscape.com 2006-07-27 14:51:28 +00:00
Родитель 122c15973d
Коммит b895c1a84c
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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);