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() {
|
function uncheckall() {
|
||||||
void(d=document);
|
void(d=document);
|
||||||
void(el=d.getElementsByTagName('INPUT'));
|
void(el=d.getElementsByTagName('INPUT'));
|
||||||
for(i=0;i<el.length;i++)
|
for(i=0;i<el.length;i++) {
|
||||||
void(el[i].checked=0)
|
void(el[i].checked=0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkall() {
|
function checkall() {
|
||||||
void(d=document);
|
void(d=document);
|
||||||
void(el=d.getElementsByTagName('INPUT'));
|
void(el=d.getElementsByTagName('INPUT'));
|
||||||
for(i=0;i<el.length;i++)
|
for(i=0;i<el.length;i++) {
|
||||||
void(el[i].checked=1)
|
void(el[i].checked=1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function inserttext(text) {
|
function inserttext(text) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue