src/widgets/MashupPlayer.js
changeset 1013 392ddcd212d7
parent 983 97fef7a4b189
child 1022 793b3727d433
--- a/src/widgets/MashupPlayer.js	Mon Sep 30 14:39:34 2013 +0200
+++ b/src/widgets/MashupPlayer.js	Tue Oct 01 15:41:46 2013 +0200
@@ -12,7 +12,7 @@
     split_screen: false,
     player_type: "PopcornPlayer",
     background: "#000000"
-}
+};
 
 IriSP.Widgets.MashupPlayer.prototype.draw = function() {
     var _this = this,
@@ -27,7 +27,7 @@
         _timedelta,
         medialist = _mashup.getMedias();
     
-    _mashup.paused = (!this.autostart && !this.autoplay)
+    _mashup.paused = (!this.autostart && !this.autoplay);
     
     function changeCurrentAnnotation() {
         if (_timecode >= _mashup.duration) {
@@ -198,7 +198,7 @@
                 _seeking = false;
                 _seekdiv.hide();
             }
-        })
+        });
         _media.on("play", function() {
             if (_media === _currentMedia) {
                 _mashup.trigger("play");
@@ -255,4 +255,4 @@
     
     _mashup.on("loadedmetadata", changeCurrentAnnotation);
    
-}
\ No newline at end of file
+};
\ No newline at end of file