@ -2130,7 +2130,6 @@ function attach_glossary_into_scorm(type) {
});
}
if (type == 'fix_links') {
$(document).ready(function() {
var objects = $("iframe").contents().find('object');
@ -2140,7 +2139,6 @@ function attach_glossary_into_scorm(type) {
var url = "http://"+location.host + coursePath+"/courses/proxy.php?";
objects.each(function (value, obj) {
var dialogId = this.id +'_dialog';
var openerId = this.id +'_opener';
@ -2148,6 +2146,12 @@ function attach_glossary_into_scorm(type) {
'<divstyle="text-align: center"><imgsrc="<?phpechoapi_get_path(WEB_CODE_PATH).'img/play-circle-8x.png';?>"/><br/>If video does not work, try clicking here.</div></a>';
var embed = $("iframe").contents().find("#"+this.id).find('embed').first();
var hasHttp = embed.attr('src').indexOf("http");
if (hasHttp <0){
return true;
}
var height = embed.attr('height');
var width = embed.attr('width');
var src = embed.attr('src').replace('https', 'http');
@ -2178,7 +2182,7 @@ function attach_glossary_into_scorm(type) {
var randLetter = String.fromCharCode(65 + Math.floor(Math.random() * 26));
var uniqid = randLetter + Date.now();
var openerId = uniqid +'_opener';
var link = '<aid="'+openerId+'"class="generated"href="#">If iframe does not work, try clicking here.<imgsrc="<?phpechoapi_get_path(WEB_CODE_PATH).'img/link-external.png';?>"/></a>';
var link = '<aid="'+openerId+'"class="generated"href="#">Open website<imgsrc="<?phpechoapi_get_path(WEB_CODE_PATH).'img/link-external.png';?>"/></a>';
var embed = $(this);
var height = embed.attr('height');
var width = embed.attr('width');
@ -2191,11 +2195,16 @@ function attach_glossary_into_scorm(type) {
'&width='+width;
var result = $("iframe").contents().find('#'+openerId);