wwwcorpus/metadataplayer/HtmlPlayer.js
changeset 17 d8b6ea26da6e
equal deleted inserted replaced
16:a41d76310c7d 17:d8b6ea26da6e
       
     1 IriSP.Widgets.HtmlPlayer = function(player, config) {
       
     2     IriSP.Widgets.Widget.call(this, player, config);
       
     3 };
       
     4 
       
     5 IriSP.Widgets.HtmlPlayer.prototype = new IriSP.Widgets.Widget();
       
     6 
       
     7 
       
     8 IriSP.Widgets.HtmlPlayer.prototype.defaults = {
       
     9 };
       
    10 
       
    11 IriSP.Widgets.HtmlPlayer.prototype.draw = function() {
       
    12 
       
    13     IriSP.htmlPlayer(this.media, this.$, this);
       
    14     
       
    15 };