Commit 0892cf1c authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 302718: Enable All Mail enables also unchangeable Reporter/Voter checkboxes…

Bug 302718: Enable All Mail enables also unchangeable Reporter/Voter checkboxes - Patch by Colin Ogilvie <colin.ogilvie@gmail.com> r=LpSolit a=justdave
parent 4d36c161
......@@ -51,7 +51,7 @@
function SetCheckboxes(setting) {
for (var count = 0; count < document.userprefsform.elements.length; count++) {
var theinput = document.userprefsform.elements[count];
if (theinput.type == "checkbox") {
if (theinput.type == "checkbox" && !theinput.disabled) {
if (theinput.name.match("neg")) {
theinput.checked = false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment