| author | Raphael Velt <raph.velt@gmail.com> |
| Wed, 15 May 2013 16:36:30 +0200 | |
| changeset 898 | 196ce9f8751c |
| parent 765 | 8cde4d15a173 |
| child 955 | 5171f8825985 |
| permissions | -rw-r--r-- |
| 765 | 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 |
||
| 898 | 13 |
IriSP.htmlPlayer(this.media, this.$, this); |
| 765 | 14 |
|
15 |
} |