| author | veltr |
| Wed, 15 May 2013 15:35:15 +0200 | |
| changeset 998 | 9521347ede1d |
| parent 987 | 7b65bf78873a |
| child 1013 | 392ddcd212d7 |
| permissions | -rw-r--r-- |
| 986 | 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 |
||
| 998 | 13 |
IriSP.htmlPlayer(this.media, this.$, this); |
| 986 | 14 |
|
15 |
} |