"Bug 414864: don't add elements to a toolbar if they already exist in the

document, patch by Dao Gottwald <dao@mozilla.com>, r=me, a=beltzner"
This commit is contained in:
gavin%gavinsharp.com 2008-01-30 21:33:46 +00:00
Родитель 61f243f1e2
Коммит 1b7bbcfb5a
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -223,6 +223,8 @@
newItem.id = "spacer" + uniqueId;
newItem.className = "chromeclass-toolbar-additional";
} else if (this.parentNode.localName == "toolbox") {
if (document.getElementById(aId))
return false;
// Attempt to locate an item with a matching id within palette.
var paletteItem = this.parentNode.palette.firstChild;
while (paletteItem) {