Re-work some of the JavaScript for prefs so that Mozilla just "does the right thing."

This commit is contained in:
javi%netscape.com 2000-07-17 22:54:07 +00:00
Родитель 077f42dcfd
Коммит 46a51b8158
1 изменённых файлов: 10 добавлений и 1 удалений

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

@ -1115,7 +1115,16 @@ function makeBoolPrefHTML(d, nm, vrbl)
if (vrbl == true) {
d.write('checked ');
}
d.write('onClick="top.' + nm + ' = checked;"></td>');
d.write('onClick="top.togglePrefBool(' + nm + ');"></td>');
}
function togglePrefBool(nm, newVal)
{
if (top[nm.name]) {
top[nm.name] = false;
} else {
top[nm.name] = true;
}
}
// makes the default email cert selected