Bug 354140 In <bookmarksMenu.js>, "Error: aDragSession.sourceNode has no properties"

r+sr=neil
This commit is contained in:
cst%yecc.com 2007-05-05 04:37:24 +00:00
Родитель 9202da2477
Коммит 4ac8cef7ad
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -474,7 +474,9 @@ var BookmarksMenuDNDObserver = {
{
var target = aEvent.target;
if (aDragSession) { // this function gets its API abused by onDragStart
// onDragStart calls this without a drag session
// There will be no sourceNode for drags from external apps
if (aDragSession && aDragSession.sourceNode) {
var orientation = BookmarksMenu.getBTOrientation(aEvent, target);
if (target == aDragSession.sourceNode ||
(target == aDragSession.sourceNode.previousSibling &&