script.js
411 Bytes
define(['jquery'], function($) {
return {
init: function() {
var url= $(location).attr('href');
$('document').ready(function(){
if(url.includes('/mod/page/view.php')){
var iframe = document.querySelector('iframe');
var player = new Vimeo.Player(iframe);
}
});
}
};
});