{{> mod_lti/loader }}
{{#str}} loadinghelp, moodle {{/str}}
{{#str}} register_warning, mod_lti {{/str}}
{{#js}}
require(['jquery'], function($) {
var loadingContainer = $('.contentitem-loading-container');
var iframe = $('#contentitem-page-iframe');
var timeout = setTimeout(function () {
var failedContainer = $('#tool-loading-failed');
failedContainer.removeClass('hidden');
}, 20000);
// Submit form.
$('#contentitem-request-form').submit();
iframe.on('load', function() {
loadingContainer.addClass('hidden');
iframe.removeClass('hidden');
// Adjust iframe's width to the fit the container's width.
var containerWidth = $('div.contentitem-container').width();
$('#contentitem-page-iframe').width(containerWidth + 'px');
// Adjust iframe's height to 75% of the width.
var containerHeight = containerWidth * 0.75;
$('#contentitem-page-iframe').height(containerHeight + 'px');
});
});
{{/js}}