Bug 309061 msgHdrViewOverlay.js should use hasChildNodes

p=me r/sr=neil.parkwaycc.co.uk
This commit is contained in:
bugzilla%arlen.demon.co.uk 2005-09-22 22:24:30 +00:00
Родитель 42cd906430
Коммит 7435eb0f18
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1332,8 +1332,8 @@ function ClearAttachmentList()
var list = document.getElementById('attachmentList');
list.clearSelection();
while (list.childNodes.length)
list.removeItemAt(list.childNodes.length - 1);
while (list.hasChildNodes())
list.removeChild(list.lastChild);
}
function ShowEditMessageButton()