equal
deleted
inserted
replaced
14 }; |
14 }; |
15 |
15 |
16 IriSP.AnnotationsWidget.prototype.displayAnnotation = function(annotation) { |
16 IriSP.AnnotationsWidget.prototype.displayAnnotation = function(annotation) { |
17 var title = annotation.content.title; |
17 var title = annotation.content.title; |
18 var description = annotation.content.description; |
18 var description = annotation.content.description; |
19 var keywords = "" // FIXME; |
19 var keywords = ""; |
20 var begin = +annotation.begin / 1000; |
20 var begin = +annotation.begin / 1000; |
21 var end = +annotation.end / 1000; |
21 var end = +annotation.end / 1000; |
22 var duration = +this._serializer.currentMedia().meta["dc:duration"]; |
22 var duration = +this._serializer.currentMedia().meta["dc:duration"]; |
23 var tags = ""; |
23 var tags = ""; |
24 |
24 |