mirror of
https://github.com/moodle/moodle.git
synced 2025-05-08 17:26:13 +02:00
Merged brackets fixes from stable
This commit is contained in:
parent
b7500e489f
commit
ae3e06dd24
@ -44,15 +44,17 @@ function openpopup(url,name,options,fullscreen) {
|
||||
function uncheckall() {
|
||||
void(d=document);
|
||||
void(el=d.getElementsByTagName('INPUT'));
|
||||
for(i=0;i<el.length;i++)
|
||||
void(el[i].checked=0)
|
||||
for(i=0;i<el.length;i++) {
|
||||
void(el[i].checked=0);
|
||||
}
|
||||
}
|
||||
|
||||
function checkall() {
|
||||
void(d=document);
|
||||
void(el=d.getElementsByTagName('INPUT'));
|
||||
for(i=0;i<el.length;i++)
|
||||
void(el[i].checked=1)
|
||||
for(i=0;i<el.length;i++) {
|
||||
void(el[i].checked=1);
|
||||
}
|
||||
}
|
||||
|
||||
function inserttext(text) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user