MDL-46961 SCORM: JavaScript Hoisting issue.

This commit is contained in:
Faisal Kaleem 2014-08-27 13:06:36 +12:00 committed by Dan Marsden
parent e609e6cf02
commit ae72469da9

View File

@ -64,6 +64,20 @@ M.mod_scormform.init = function(Y) {
}}, 800);
}
// Set mode and newattempt correctly.
var setlaunchoptions = function() {
var mode = Y.one('#scormviewform input[name=mode]:checked');
if (mode) {
var modevalue = mode.get('value');
launch_url += '&mode=' + (modevalue ? modevalue : 'normal');
} else {
launch_url += '&mode=normal';
}
var newattempt = Y.one('#scormviewform #a');
launch_url += (newattempt && newattempt.get('checked') ? '&newattempt=on' : '');
}
if (launch == true) {
setlaunchoptions();
winobj = window.open(launch_url,'Popup', poptions);
@ -80,17 +94,4 @@ M.mod_scormform.init = function(Y) {
e.preventDefault();
}, scormform);
}
var setlaunchoptions = function() {
var mode = Y.one('#scormviewform input[name=mode]:checked');
if (mode) {
var modevalue = mode.get('value');
launch_url += '&mode=' + (modevalue ? modevalue : 'normal');
} else {
launch_url += '&mode=normal';
}
var newattempt = Y.one('#scormviewform #a');
launch_url += (newattempt && newattempt.get('checked') ? '&newattempt=on' : '');
}
}