--- a/src/widgets/MediaList.js Mon Sep 30 14:39:34 2013 +0200
+++ b/src/widgets/MediaList.js Tue Oct 01 15:41:46 2013 +0200
@@ -16,7 +16,7 @@
all_media: "All videos",
other_media: "Other videos"
}
-}
+};
IriSP.Widgets.MediaList.prototype.defaults = {
default_thumbnail : "http://ldt.iri.centrepompidou.fr/static/site/ldt/css/imgs/video_sequence.png",
@@ -54,7 +54,7 @@
this.player.trigger("search.noMatchFound");
}
}
-}
+};
IriSP.Widgets.MediaList.prototype.draw = function() {
this.$.addClass("Ldt-MediaListWidget")
@@ -63,7 +63,7 @@
if (typeof this.media.getMedias === "function") {
this.media.on("enter-annotation", function(_a) {
_this.redraw(_a.getMedia());
- })
+ });
}
this.redraw();
};
@@ -81,9 +81,9 @@
left: _scale * _annotation.begin,
width: _scale * (_annotation.end - _annotation.begin),
color: ( typeof _annotation.color !== "undefined" && _annotation.color ? _annotation.color : _this.default_color )
- }
- })
-}
+ };
+ });
+};
IriSP.Widgets.MediaList.prototype.redraw = function(_media) {
if (typeof _media !== "undefined") {
@@ -121,7 +121,7 @@
title: _media.title,
description: _media.description,
segments: _this.getSegments(_media)
- })
+ });
}).join("");
this.$.find('.Ldt-MediaList-OtherList').html(_html);
} else {