src/js/widgets/annotationsWidget.js
branchpopcorn-port
changeset 807 9f6c136ddc03
parent 798 56fd575cb447
child 820 7968346b9689
equal deleted inserted replaced
806:4ae02249c3ac 807:9f6c136ddc03
    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