Merge branch 'm23_MDL-34755' of git://github.com/danmarsden/moodle into MOODLE_23_STABLE

This commit is contained in:
Sam Hemelryk
2012-09-11 15:02:26 +12:00
+2 -2
View File
@@ -1,6 +1,6 @@
M.mod_scormform = {};
M.mod_scormform.init = function(Y) {
var scormform = Y.one('#scormviewform');
var scormform = document.getElementById('scormviewform');
var cwidth = scormplayerdata.cwidth;
var cheight = scormplayerdata.cheight;
var poptions = scormplayerdata.popupoptions;
@@ -15,5 +15,5 @@ M.mod_scormform.init = function(Y) {
}
poptions = poptions+',width='+cwidth+',height='+cheight;
}
scormform.setAttribute('onsubmit', "window.open('','Popup','"+poptions+"'); this.target='Popup';");
scormform.onsubmit = function() {window.open('', 'Popup', poptions); this.target='Popup';};
}