options += ",width=" + width + ",height=" + height;
windowobj = window.open(url,name,options);
+ windowobj.opener = null;
if (!windowobj) {
return;
}
winobj = window.open(launch_url,'Popup', poptions);
this.target = 'Popup';
scormredirect(winobj);
+ winobj.opener = null;
}
// Listen for view form submit and generate popup on user interaction.
if (scormform) {
winobj = window.open(launch_url, 'Popup', poptions);
this.target = 'Popup';
scormredirect(winobj);
+ winobj.opener = null;
e.preventDefault();
}, scormform);
}