src/widgets/HtmlPlayer.js
author cavaliet
Thu, 02 Jan 2014 16:40:25 +0100
branchnew-model
changeset 1019 3ab36f402b0c
permissions -rw-r--r--
update widgets after enhance in annotation platform.

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);
    
};