src/widgets/HtmlPlayer.js
author durandn
Tue, 01 Sep 2015 15:24:26 +0200
changeset 1045 b06345320ffb
parent 1013 392ddcd212d7
child 1072 ac1eacb3aa33
permissions -rw-r--r--
Altered ldt_annotate serializer to allow for serializing id for editing annotation + Added Markers widget that allows to make and edit 0 duration annotations.

IriSP.Widgets.HtmlPlayer = function(player, config) {
    IriSP.Widgets.Widget.call(this, player, config);
};

IriSP.Widgets.HtmlPlayer.prototype = new IriSP.Widgets.Widget();


IriSP.Widgets.HtmlPlayer.prototype.defaults = {
};

IriSP.Widgets.HtmlPlayer.prototype.draw = function() {

    IriSP.htmlPlayer(this.media, this.$, this);
    
};