mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Merged brackets fixes from stable
This commit is contained in:
parent
b7500e489f
commit
ae3e06dd24
1 changed files with 6 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue