This commit is contained in:
hyatt%netscape.com 2002-08-07 06:23:23 +00:00
Родитель ff1c0f7e05
Коммит c01b5be460
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -245,19 +245,24 @@ var paletteDNDObserver = {
{
alert("DROP HAPPENED.");
var itemID = aXferData.data;
alert("GOT XFER DATA.");
var item = null;
var palette = document.getElementById("palette-box");
var toolbar = document.getElementById("cloneToolbar");
var toolbarItem = toolbar.firstChild;
while (toolbarItem) {
alert("looping.");
if (toolbarItem.firstChild.id == itemID) {
item = toolbarItem;
break;
}
toolbarItem = toolbarItem.nextSibling;
}
if (!item)
if (!item) {
alert("didn't find it.");
return;
}
// We're going back in the palette now, so we have to readd the flex
// and width which we removed when moving the item to the toolbar.