src/widgets/HtmlPlayer.js
author veltr
Thu, 16 May 2013 13:34:02 +0200
changeset 1001 3210bf928a11
parent 998 9521347ede1d
child 1013 392ddcd212d7
permissions -rw-r--r--
Enabled loading widgets without the widgeting framework

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