MDL-55325 mod_lti: Use .on('load') instead of .load()

Necessary after MDL-50937 JQuery upgrade to 3.1
This commit is contained in:
John Okely 2016-07-25 17:28:35 +08:00
parent 90a8bdbfc0
commit 4c3472a55c

View File

@ -56,7 +56,7 @@
failedContainer.removeClass('hidden');
}, 20000);
iframe.load(function() {
iframe.on('load', function() {
loadingContainer.addClass('hidden');
iframe.removeClass('hidden');
});