Bug 270798 ASSERTION: getElementById(""), fix caller?: '!aId.IsEmpty()' @onLocationFound

r=silver
This commit is contained in:
timeless%mozdev.org 2006-02-13 21:10:06 +00:00
Родитель ac332c2470
Коммит 75332ab480
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1632,7 +1632,8 @@ function vmgr_dewdropinn (sourceView, targetView, direction)
var dest = new Object();
dest.windowId = parsedTarget.windowId;
dest.containerId = destContainer.getAttribute ("id");
dest.before = destBefore ? destBefore.getAttribute("id") : null;
if (destBefore)
dest.before = destBefore.getAttribute("id");
this.moveView(dest, sourceView.viewId);
this.endMultiMove();