2013-04-02 17:05:16 +02:00
|
|
|
var H5P = H5P || {};
|
2013-01-17 09:01:43 +01:00
|
|
|
|
2013-10-25 15:10:50 +02:00
|
|
|
// This needs to be determined before init is run.
|
|
|
|
H5P.isFramed = (window.parent !== window);
|
|
|
|
|
2013-01-17 09:01:43 +01:00
|
|
|
// Initialize H5P content
|
|
|
|
// Scans for ".h5p-content"
|
|
|
|
H5P.init = function () {
|
2013-04-10 17:08:57 +02:00
|
|
|
if (H5P.$window === undefined) {
|
|
|
|
H5P.$window = H5P.jQuery(window);
|
|
|
|
}
|
|
|
|
if (H5P.$body === undefined) {
|
|
|
|
H5P.$body = H5P.jQuery('body');
|
|
|
|
}
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-10-25 15:10:50 +02:00
|
|
|
// Is this H5P being run in a frame?
|
|
|
|
if (H5P.isFramed) {
|
|
|
|
H5P.$body.addClass('h5p-iframe-content');
|
|
|
|
}
|
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
if (H5P.fullScreenBrowserPrefix === undefined) {
|
2013-05-21 16:53:38 +02:00
|
|
|
if (document.documentElement.requestFullScreen) {
|
2013-04-11 14:29:29 +02:00
|
|
|
H5P.fullScreenBrowserPrefix = '';
|
|
|
|
}
|
2013-10-25 15:10:50 +02:00
|
|
|
else if (document.documentElement.webkitRequestFullScreen
|
|
|
|
&& navigator.userAgent.indexOf('Android') === -1 // Skip Android
|
|
|
|
) {
|
2013-07-18 15:58:52 +02:00
|
|
|
// Safari has stopped working as of v6.0.3. (Specifying keyboard input
|
|
|
|
// makes webkitRequestFullScreen silently fail.) The following code
|
|
|
|
// assumes that the Safari developers figure out how to properly handle
|
|
|
|
// their own extension before reaching version 6.0.10. Until then, we
|
|
|
|
// treat Safari as an old IE. (Please note: Just looking for Safari in
|
|
|
|
// the UA string will also match Chrome.)
|
|
|
|
if (navigator.userAgent.match(/Version\/6\.0\.[3-9].*Safari/)) {
|
|
|
|
H5P.fullScreenBrowserPrefix = undefined;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
H5P.fullScreenBrowserPrefix = 'webkit';
|
|
|
|
}
|
2013-04-11 14:29:29 +02:00
|
|
|
}
|
2013-05-21 16:53:38 +02:00
|
|
|
else if (document.documentElement.mozRequestFullScreen) {
|
2013-04-11 14:29:29 +02:00
|
|
|
H5P.fullScreenBrowserPrefix = 'moz';
|
|
|
|
}
|
2013-05-21 16:53:38 +02:00
|
|
|
else if (document.documentElement.msRequestFullScreen) {
|
2013-04-11 14:29:29 +02:00
|
|
|
H5P.fullScreenBrowserPrefix = 'ms';
|
|
|
|
}
|
|
|
|
}
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-10-25 15:10:50 +02:00
|
|
|
// H5Ps added in normal DIV.
|
2013-01-17 22:20:41 +01:00
|
|
|
H5P.jQuery(".h5p-content").each(function (idx, el) {
|
2013-10-25 15:10:50 +02:00
|
|
|
var $el = H5P.jQuery(el),
|
|
|
|
contentId = $el.data('content-id'),
|
|
|
|
mainLibrary = $el.data('class'),
|
|
|
|
obj = new (H5P.classFromName(mainLibrary))(H5P.jQuery.parseJSON(H5PIntegration.getJsonContent(contentId)), contentId);
|
|
|
|
|
|
|
|
// Render H5P in container.
|
2013-01-17 09:01:43 +01:00
|
|
|
obj.attach($el);
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-10-25 15:10:50 +02:00
|
|
|
// Add Fullscreen button if relevant.
|
2013-04-11 14:59:33 +02:00
|
|
|
if (H5PIntegration.getFullscreen(contentId)) {
|
2013-10-21 13:22:13 +02:00
|
|
|
H5P.jQuery('<div class="h5p-content-controls"><a href="#" class="h5p-enable-fullscreen">' + H5PIntegration.fullscreenText + '</a></div>').insertBefore($el).children().click(function () {
|
2013-04-11 14:29:29 +02:00
|
|
|
H5P.fullScreen($el, obj);
|
2013-04-10 17:08:57 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
2013-01-17 09:01:43 +01:00
|
|
|
});
|
2013-10-25 15:10:50 +02:00
|
|
|
|
|
|
|
// H5Ps living in iframes. Note: Fullscreen button will be added
|
|
|
|
// inside iFrame if relevant
|
|
|
|
var $h5pIframes = H5P.jQuery(".h5p-iframe");
|
|
|
|
$h5pIframes.each(function (idx, iframe) {
|
|
|
|
var $iframe = H5P.jQuery(iframe),
|
|
|
|
contentId = $iframe.data('content-id'),
|
|
|
|
mainLibrary = $iframe.data('class');
|
|
|
|
|
|
|
|
// Get iFrame body, and reset it to contain only the normal H5P DIV.
|
|
|
|
$iframe.contents().find('body')
|
|
|
|
.html('<div class="h5p-content" data-class="' + mainLibrary + '" data-content-id="' + contentId + '"/>');
|
|
|
|
|
|
|
|
// Add scripts required for this iFrame from settings
|
|
|
|
H5PIntegration.addFilesToIframe($iframe, contentId);
|
|
|
|
});
|
|
|
|
if ($h5pIframes.length > 0) {
|
|
|
|
// TODO: This seems very hacky... why can't we just use the resize event? What happens if we ain't done before the next interval starts?
|
|
|
|
setInterval(function h5pIframeResizer() {
|
|
|
|
$h5pIframes.each(function (idx, iframe) {
|
|
|
|
var contentHeight = iframe.contentDocument.body.offsetHeight;
|
|
|
|
var frameHeight = H5P.jQuery(iframe).innerHeight();
|
|
|
|
|
|
|
|
if (frameHeight !== contentHeight) {
|
|
|
|
H5P.resizeIframe(H5P.jQuery(iframe).data('content-id'), contentHeight);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, 100);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
H5P.fullScreenIframe = function (contentId, obj, exitCallback) {
|
|
|
|
H5P.fullScreen(H5P.jQuery('#iframe-wrapper-' + contentId), obj, exitCallback);
|
|
|
|
};
|
|
|
|
|
|
|
|
H5P.resizeIframe = function (contentId, height) {
|
|
|
|
var iframe = document.getElementById('iframe-' + contentId);
|
|
|
|
// Don't allow iFrame to grow beyond window height;
|
|
|
|
if (height > window.innerHeight) {
|
|
|
|
height = window.innerHeight;
|
|
|
|
}
|
|
|
|
iframe.style.height = (H5P.isFullscreen) ? '100%' : height + 'px';
|
2013-01-17 09:01:43 +01:00
|
|
|
};
|
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
/**
|
|
|
|
* Enable full screen for the given h5p.
|
2013-04-26 17:27:35 +02:00
|
|
|
*
|
2013-04-11 14:29:29 +02:00
|
|
|
* @param {jQuery} $el Container
|
|
|
|
* @param {object} obj H5P
|
|
|
|
* @returns {undefined}
|
|
|
|
*/
|
2013-10-25 15:10:50 +02:00
|
|
|
H5P.fullScreen = function ($el, obj, exitCallback) {
|
|
|
|
if (H5P.isFramed) {
|
|
|
|
var $classes = H5P.jQuery('html').add(H5P.$body).add($el);
|
|
|
|
$classes.addClass('h5p-fullscreen');
|
|
|
|
window.parent.H5P.fullScreenIframe($el.data('content-id'), obj, function () {
|
|
|
|
$classes.removeClass('h5p-fullscreen');
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
if (H5P.fullScreenBrowserPrefix === undefined) {
|
|
|
|
// Create semi fullscreen.
|
|
|
|
$el.add(H5P.$body).addClass('h5p-semi-fullscreen');
|
2013-09-10 22:43:31 +02:00
|
|
|
// Move H5P content to top of body to make sure it is above other page
|
|
|
|
// content. Insert placeholder in original position to be able to move it
|
|
|
|
// back.
|
2013-10-25 15:10:50 +02:00
|
|
|
// THIS DOES NOT WORK WITH IFRAMED CONTENT, iframe will reload/fail.
|
|
|
|
// $el.after('<div id="h5pfullscreenreplacementplaceholder"></div>').prependTo(H5P.$body);
|
|
|
|
|
|
|
|
H5P.isFullscreen = true;
|
2013-09-10 22:43:31 +02:00
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
var $disable = H5P.jQuery('<a href="#" class="h5p-disable-fullscreen">Disable fullscreen</a>').appendTo($el);
|
|
|
|
var keyup, disableSemiFullscreen = function () {
|
|
|
|
$el.add(H5P.$body).removeClass('h5p-semi-fullscreen');
|
2013-10-25 15:10:50 +02:00
|
|
|
// H5P.jQuery('#h5pfullscreenreplacementplaceholder').before($el).remove();
|
2013-04-11 14:29:29 +02:00
|
|
|
$disable.remove();
|
2013-10-25 15:10:50 +02:00
|
|
|
H5P.isFullscreen = false;
|
2013-04-11 14:29:29 +02:00
|
|
|
H5P.$body.unbind('keyup', keyup);
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-10-25 15:10:50 +02:00
|
|
|
H5P.jQuery(".h5p-iframe").each(function (idx, el) {
|
|
|
|
H5P.resizeIframe(H5P.jQuery(el).data('content-id'), 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exitCallback) {
|
|
|
|
exitCallback();
|
|
|
|
}
|
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
if (obj.resize !== undefined) {
|
|
|
|
obj.resize(false);
|
|
|
|
}
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
keyup = function (event) {
|
|
|
|
if (event.keyCode === 27) {
|
|
|
|
disableSemiFullscreen();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
$disable.click(disableSemiFullscreen);
|
|
|
|
H5P.$body.keyup(keyup);
|
2013-04-10 17:08:57 +02:00
|
|
|
}
|
2013-04-11 14:29:29 +02:00
|
|
|
else {
|
|
|
|
var first, eventName = H5P.fullScreenBrowserPrefix + 'fullscreenchange';
|
2013-10-25 15:10:50 +02:00
|
|
|
H5P.isFullscreen = true;
|
2013-04-11 14:29:29 +02:00
|
|
|
document.addEventListener(eventName, function () {
|
|
|
|
if (first === undefined) {
|
|
|
|
first = false;
|
|
|
|
return;
|
|
|
|
}
|
2013-10-25 15:10:50 +02:00
|
|
|
H5P.isFullscreen = false;
|
2013-04-11 14:29:29 +02:00
|
|
|
$el.add(H5P.$body).removeClass('h5p-fullscreen');
|
2013-10-25 15:10:50 +02:00
|
|
|
|
|
|
|
H5P.jQuery(".h5p-iframe").each(function (idx, el) {
|
|
|
|
H5P.resizeIframe(H5P.jQuery(el).data('content-id'), 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exitCallback) {
|
|
|
|
exitCallback();
|
|
|
|
}
|
|
|
|
|
2013-05-21 16:53:38 +02:00
|
|
|
if (obj.resize !== undefined) {
|
|
|
|
obj.resize(false);
|
|
|
|
}
|
2013-04-11 14:29:29 +02:00
|
|
|
document.removeEventListener(eventName, arguments.callee, false);
|
|
|
|
});
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
if (H5P.fullScreenBrowserPrefix === '') {
|
|
|
|
$el[0].requestFullScreen();
|
|
|
|
}
|
|
|
|
else {
|
2013-06-07 19:09:10 +02:00
|
|
|
$el[0][H5P.fullScreenBrowserPrefix + 'RequestFullScreen'](H5P.fullScreenBrowserPrefix === 'webkit' ? Element.ALLOW_KEYBOARD_INPUT : undefined);
|
2013-04-11 14:29:29 +02:00
|
|
|
}
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-04-11 14:29:29 +02:00
|
|
|
$el.add(H5P.$body).addClass('h5p-fullscreen');
|
2013-04-10 17:08:57 +02:00
|
|
|
}
|
2013-10-25 15:10:50 +02:00
|
|
|
H5P.jQuery(".h5p-iframe").each(function (idx, el) {
|
|
|
|
H5P.resizeIframe(H5P.jQuery(el).data('content-id'), 0);
|
|
|
|
});
|
2013-04-11 14:29:29 +02:00
|
|
|
if (obj.resize !== undefined) {
|
|
|
|
obj.resize(true);
|
2013-04-10 17:08:57 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-06-20 14:49:56 +02:00
|
|
|
/**
|
2013-07-03 14:22:00 +02:00
|
|
|
* Find the path to the content files based on the id of the content
|
|
|
|
*
|
|
|
|
* Also identifies and returns absolute paths
|
|
|
|
*
|
|
|
|
* @param string path
|
|
|
|
* Absolute path to a file, or relative path to a file in the content folder
|
|
|
|
* @param contentId
|
|
|
|
* Id of the content requesting a path
|
2013-06-20 14:49:56 +02:00
|
|
|
*/
|
2013-06-27 14:29:56 +02:00
|
|
|
H5P.getPath = function (path, contentId) {
|
|
|
|
if (path.substr(0, 7) === 'http://' || path.substr(0, 8) === 'https://') {
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
return H5PIntegration.getContentPath(contentId) + path;
|
2013-02-07 17:50:17 +01:00
|
|
|
};
|
2013-01-17 22:20:41 +01:00
|
|
|
|
2013-07-03 14:22:00 +02:00
|
|
|
/**
|
2013-07-03 14:24:09 +02:00
|
|
|
* THIS FUNCTION IS DEPRECATED, USE getPath INSTEAD
|
|
|
|
*
|
|
|
|
* Find the path to the content files folder based on the id of the content
|
2013-07-03 14:22:00 +02:00
|
|
|
*
|
|
|
|
* @param contentId
|
|
|
|
* Id of the content requesting a path
|
|
|
|
*/
|
|
|
|
H5P.getContentPath = function (contentId) {
|
|
|
|
return H5PIntegration.getContentPath(contentId);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-01-17 09:01:43 +01:00
|
|
|
//
|
|
|
|
// Used from libraries to construct instances of other libraries' objects by
|
|
|
|
// name.
|
|
|
|
//
|
|
|
|
H5P.classFromName = function(name) {
|
|
|
|
var arr = name.split(".");
|
|
|
|
return this[arr[arr.length-1]];
|
|
|
|
};
|
|
|
|
|
|
|
|
// Helper object for keeping coordinates in the same format all over.
|
|
|
|
H5P.Coords = function(x, y, w, h) {
|
|
|
|
if ( !(this instanceof H5P.Coords) )
|
|
|
|
return new H5P.Coords(x, y, w, h);
|
|
|
|
|
|
|
|
this.x = 0;
|
|
|
|
this.y = 0;
|
|
|
|
this.w = 1;
|
|
|
|
this.h = 1;
|
|
|
|
|
2013-04-02 17:05:16 +02:00
|
|
|
if (typeof(x) === 'object') {
|
2013-01-17 09:01:43 +01:00
|
|
|
this.x = x.x;
|
|
|
|
this.y = x.y;
|
|
|
|
this.w = x.w;
|
|
|
|
this.h = x.h;
|
|
|
|
} else {
|
|
|
|
if (x !== undefined) {
|
|
|
|
this.x = x;
|
|
|
|
}
|
|
|
|
if (y !== undefined) {
|
|
|
|
this.y = y;
|
|
|
|
}
|
|
|
|
if (w !== undefined) {
|
|
|
|
this.w = w;
|
|
|
|
}
|
|
|
|
if (h !== undefined) {
|
|
|
|
this.h = h;
|
2013-01-25 14:38:12 +01:00
|
|
|
}
|
2013-01-17 09:01:43 +01:00
|
|
|
}
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
2013-03-06 15:59:02 +01:00
|
|
|
/**
|
|
|
|
*@param {string} library
|
|
|
|
* library in the format machineName majorVersion.minorVersion
|
|
|
|
* @returns
|
|
|
|
* library as an object with machineName, majorVersion and minorVersion properties
|
|
|
|
* return false if the library parameter is invalid
|
|
|
|
*/
|
|
|
|
H5P.libraryFromString = function (library) {
|
|
|
|
var regExp = /(.+)\s(\d)+\.(\d)$/g;
|
|
|
|
var res = regExp.exec(library);
|
|
|
|
if (res !== null) {
|
|
|
|
return {
|
|
|
|
'machineName': res[1],
|
|
|
|
'majorVersion': res[2],
|
|
|
|
'minorVersion': res[3]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2013-02-07 17:50:17 +01:00
|
|
|
|
2013-07-08 08:59:14 +02:00
|
|
|
/**
|
|
|
|
* Get the path to the library
|
2013-07-18 15:58:52 +02:00
|
|
|
*
|
2013-07-08 08:59:14 +02:00
|
|
|
* @param {string} machineName The machine name of the library
|
|
|
|
* @returns {string} The full path to the library
|
|
|
|
*/
|
|
|
|
H5P.getLibraryPath = function(machineName) {
|
|
|
|
return H5PIntegration.getLibraryPath(machineName);
|
|
|
|
};
|
|
|
|
|
2013-04-04 14:58:17 +02:00
|
|
|
/**
|
|
|
|
* Recursivly clone the given object.
|
2013-04-26 17:27:35 +02:00
|
|
|
*
|
2013-04-04 14:58:17 +02:00
|
|
|
* @param {object} object Object to clone.
|
|
|
|
* @param {type} recursive
|
|
|
|
* @returns {object} A clone of object.
|
|
|
|
*/
|
2013-05-23 13:00:58 +02:00
|
|
|
H5P.cloneObject = function (object, recursive) {
|
|
|
|
var clone = object instanceof Array ? [] : {};
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-04-04 14:58:17 +02:00
|
|
|
for (var i in object) {
|
|
|
|
if (object.hasOwnProperty(i)) {
|
|
|
|
if (recursive !== undefined && recursive && typeof object[i] === 'object') {
|
2013-05-23 13:00:58 +02:00
|
|
|
clone[i] = H5P.cloneObject(object[i], recursive);
|
2013-04-04 14:58:17 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
clone[i] = object[i];
|
|
|
|
}
|
|
|
|
}
|
2013-04-18 09:51:58 +02:00
|
|
|
}
|
2013-04-26 17:27:35 +02:00
|
|
|
|
2013-04-18 09:51:58 +02:00
|
|
|
return clone;
|
2013-04-04 14:58:17 +02:00
|
|
|
};
|
|
|
|
|
2013-04-30 17:07:14 +02:00
|
|
|
/**
|
|
|
|
* Remove all empty spaces before and after the value.
|
|
|
|
*
|
|
|
|
* @param {String} value
|
|
|
|
* @returns {@exp;value@call;replace}
|
|
|
|
*/
|
|
|
|
H5P.trim = function (value) {
|
|
|
|
return value.replace(/^\s+|\s+$/g, '');
|
|
|
|
};
|
|
|
|
|
2013-05-24 13:24:01 +02:00
|
|
|
/**
|
|
|
|
* Check if javascript path/key is loaded.
|
|
|
|
*
|
|
|
|
* @param {String} path
|
|
|
|
* @returns {Boolean}
|
|
|
|
*/
|
|
|
|
H5P.jsLoaded = function (path) {
|
|
|
|
for (var i = 0; i < H5P.loadedJs.length; i++) {
|
|
|
|
if (H5P.loadedJs[i] === path) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if styles path/key is loaded.
|
|
|
|
*
|
|
|
|
* @param {String} path
|
|
|
|
* @returns {Boolean}
|
|
|
|
*/
|
|
|
|
H5P.cssLoaded = function (path) {
|
|
|
|
for (var i = 0; i < H5P.loadedCss.length; i++) {
|
|
|
|
if (H5P.loadedCss[i] === path) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2013-01-17 09:01:43 +01:00
|
|
|
// We have several situations where we want to shuffle an array, extend array
|
|
|
|
// to do so.
|
2013-07-25 01:50:16 +02:00
|
|
|
H5P.shuffleArray = function(array) {
|
|
|
|
var i = array.length, j, tempi, tempj;
|
2013-01-17 09:01:43 +01:00
|
|
|
if ( i === 0 ) return false;
|
|
|
|
while ( --i ) {
|
2013-01-25 14:38:12 +01:00
|
|
|
j = Math.floor( Math.random() * ( i + 1 ) );
|
2013-07-25 01:50:16 +02:00
|
|
|
tempi = array[i];
|
|
|
|
tempj = array[j];
|
|
|
|
array[i] = tempj;
|
|
|
|
array[j] = tempi;
|
2013-01-17 09:01:43 +01:00
|
|
|
}
|
2013-07-25 01:50:16 +02:00
|
|
|
return array;
|
2013-01-17 09:01:43 +01:00
|
|
|
};
|
|
|
|
|
2013-10-21 13:22:13 +02:00
|
|
|
/**
|
|
|
|
* Post finished results for user.
|
|
|
|
*
|
|
|
|
* @param {Number} contentId
|
|
|
|
* @param {Number} points
|
|
|
|
* @param {Number} maxPoints
|
|
|
|
*/
|
|
|
|
H5P.setFinished = function (contentId, points, maxPoints) {
|
|
|
|
if (H5P.postUserStatistics === true) {
|
|
|
|
H5P.jQuery.post(H5P.ajaxPath + 'setFinished', {contentId: contentId, points: points, maxPoints: maxPoints});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-17 09:01:43 +01:00
|
|
|
// Add indexOf to browsers that lack them. (IEs)
|
2013-10-25 15:10:50 +02:00
|
|
|
if (!Array.prototype.indexOf) {
|
|
|
|
Array.prototype.indexOf = function (needle) {
|
|
|
|
for (var i = 0; i < this.length; i++) {
|
|
|
|
if (this[i] === needle) {
|
2013-01-25 14:38:12 +01:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
};
|
2013-01-17 09:01:43 +01:00
|
|
|
}
|
|
|
|
|
2013-07-09 10:36:27 +02:00
|
|
|
// Need to define trim() since this is not available on older IEs,
|
|
|
|
// and trim is used in several libs
|
2013-10-25 15:10:50 +02:00
|
|
|
if (String.prototype.trim === undefined) {
|
2013-07-09 10:36:27 +02:00
|
|
|
String.prototype.trim = function () {
|
|
|
|
return H5P.trim(this);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:10:50 +02:00
|
|
|
// Finally, we want to run init when document is ready. But not if we're
|
|
|
|
// in an iFrame. Then we wait for parent to start init().
|
|
|
|
if (H5P.jQuery && !H5P.isFramed) {
|
|
|
|
H5P.jQuery(document).ready(function () {
|
|
|
|
if (!H5P.initialized) {
|
|
|
|
H5P.initialized = true;
|
|
|
|
H5P.init();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|