script.js 934 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');
        			console.log(iframe);
					var player = new Vimeo.Player(iframe);
					console.log(player);
					
					 player.on("play", function() {
					        console.log('played the video!');
					    });
					 
					 player.getCurrentTime().then(function(seconds) {
						    // seconds = the current playback position
						 console.log(seconds);
						})
					player.pause().then(function() {
						console.log('the video was paused');
						})	
						
						
						/*.catch(function(error) {
						    // an error occurred
						});*/
					 console.log("after player");
        			
        		}
            });
        }
    };
});