--- a/src/widgets/PopcornPlayer.js Mon Sep 30 14:39:34 2013 +0200
+++ b/src/widgets/PopcornPlayer.js Tue Oct 01 15:41:46 2013 +0200
@@ -7,7 +7,7 @@
/* A Popcorn-based player for HTML5 Video, Youtube and Vimeo */
IriSP.Widgets.PopcornPlayer.prototype.defaults = {
-}
+};
IriSP.Widgets.PopcornPlayer.prototype.draw = function() {
@@ -112,7 +112,7 @@
getVolume();
_media.trigger("loadedmetadata");
_media.trigger("volumechange");
- })
+ });
_popcorn.on("timeupdate", function() {
_media.trigger("timeupdate", new IriSP.Model.Time(1000*_popcorn.currentTime()));
@@ -121,7 +121,7 @@
_popcorn.on("volumechange", function() {
getVolume();
_media.trigger("volumechange");
- })
+ });
_popcorn.on("play", function() {
_media.trigger("play");
@@ -135,4 +135,4 @@
_media.trigger("seeked");
});
-}
\ No newline at end of file
+};
\ No newline at end of file