1
0

Adding the 'select all' possibility to the bookmarks header.

This commit is contained in:
Stefan Frech
2008-06-12 19:14:20 +00:00
committed by Jonas Kattendick
parent 7782823d1d
commit b4308ee5ab
4 changed files with 18 additions and 20 deletions

View File

@@ -89,7 +89,7 @@ var parameter='';
http://www.squarefree.com/bookmarklets/
*/
function selection(boxes){
function selectthem(boxes, stat){
var x,k,f,j;
x=document.forms;
@@ -107,7 +107,7 @@ function selection(boxes){
f[j].checked = !f[j].checked ;
}
else if (boxes == "checkall") {
f[j].checked = document.getElementsByName('CheckAll')[0].checked;
f[j].checked = stat;
}
}
}