1
0

Added JavaScript checkall to checkbox in bookmark header.

This commit is contained in:
Stefan Frech
2008-06-11 21:44:03 +00:00
committed by Jonas Kattendick
parent 53c9c035c4
commit 7782823d1d
2 changed files with 4 additions and 1 deletions

View File

@@ -106,6 +106,9 @@ function selection(boxes){
else if (boxes == "toggle") {
f[j].checked = !f[j].checked ;
}
else if (boxes == "checkall") {
f[j].checked = document.getElementsByName('CheckAll')[0].checked;
}
}
}
}