bug 296662: Javascript strict warnings in preferences dialogpatch by Henrik Skupin <hskupin@gmail.com>, r=bsmedberg, a=asa

This commit is contained in:
db48x@yahoo.com 2007-05-14 22:55:19 -07:00
parent fc1ed778ad
commit 0328e9de17

View File

@ -501,17 +501,17 @@ function DeleteSelectedItemFromTree
box.endUpdateBatch();
// update selection and/or buttons
var removeButton = document.getElementById(removeButton);
var removeAllButton = document.getElementById(removeAllButton);
var removeBtn = document.getElementById(removeButton);
var removeAllBtn = document.getElementById(removeAllButton);
if (table.length) {
removeButton.removeAttribute("disabled");
removeAllButton.removeAttribute("disabled");
removeBtn.removeAttribute("disabled");
removeAllBtn.removeAttribute("disabled");
selection.select(oldSelectStart < table.length ? oldSelectStart : table.length - 1);
} else {
removeButton.setAttribute("disabled", "true");
removeAllButton.setAttribute("disabled", "true");
removeBtn.setAttribute("disabled", "true");
removeAllBtn.setAttribute("disabled", "true");
}
}