src/js/widgets/annotationsWidget.js
branchpopcorn-port
changeset 798 56fd575cb447
parent 782 144e215dd324
child 820 7968346b9689
equal deleted inserted replaced
797:8407313c144f 798:56fd575cb447
    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