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

r+sr=neil
This commit is contained in:
cst%yecc.com 2006-10-01 15:39:55 +00:00
Родитель d2ec14868b
Коммит fa56940e96
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 &&