mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 14:03:52 +01:00
MDL-11892 Fixed calls to expand javascript to correctly use quoted strings in all necessary places.
This commit is contained in:
parent
5183f0cc5b
commit
d28548d5e4
@ -119,7 +119,7 @@ function scorm_get_toc($user,$scorm,$liststyle,$currentorg='',$scoid='',$mode='n
|
||||
if (isset($_COOKIE['hide:SCORMitem'.$nextsco->id])) {
|
||||
$icon = 'plus';
|
||||
}
|
||||
$result->toc .= "\t\t".'<li><a href="javascript:expandCollide(img'.$sublist.',s'.$sublist.','.$nextsco->id.');">'.
|
||||
$result->toc .= "\t\t".'<li><a href="javascript:expandCollide(\'img'.$sublist.'\',\'s'.$sublist.'\','.$nextsco->id.');">'.
|
||||
'<img id="img'.$sublist.'" src="'.$scormpixdir.'/'.$icon.'.gif" alt="'.$strexpand.'" title="'.$strexpand.'"/></a>';
|
||||
} else if ($isvisible) {
|
||||
$result->toc .= "\t\t".'<li><img src="'.$scormpixdir.'/spacer.gif" />';
|
||||
@ -228,15 +228,16 @@ function scorm_get_toc($user,$scorm,$liststyle,$currentorg='',$scoid='',$mode='n
|
||||
function expandCollide(which,list,item) {
|
||||
var nn=document.ids?true:false
|
||||
var w3c=document.getElementById?true:false
|
||||
var beg=nn?"document.ids.":w3c?"document.getElementById(":"document.all.";
|
||||
var mid=w3c?").style":".style";
|
||||
var beg=nn?"document.ids.":w3c?"document.getElementById(\'":"document.all.";
|
||||
var mid=w3c?"\').style":".style";
|
||||
|
||||
which = which.substring(0,(which.length));
|
||||
if (eval(beg+list+mid+".display") != "none") {
|
||||
which.src = "'.$scormpixdir.'/plus.gif";
|
||||
document.getElementById(which).src = "'.$scormpixdir.'/plus.gif";
|
||||
eval(beg+list+mid+".display=\'none\';");
|
||||
new cookie("hide:SCORMitem" + item, 1, 356, "/").set();
|
||||
} else {
|
||||
which.src = "'.$scormpixdir.'/minus.gif";
|
||||
document.getElementById(which).src = "'.$scormpixdir.'/minus.gif";
|
||||
eval(beg+list+mid+".display=\'block\';");
|
||||
new cookie("hide:SCORMitem" + item, 1, -1, "/").set();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user