| author | Raphael Velt <raph.velt@gmail.com> |
| Tue, 01 Oct 2013 16:33:47 +0200 | |
| changeset 955 | 5171f8825985 |
| parent 898 | 196ce9f8751c |
| 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 = { |
|
| 955 | 9 |
}; |
| 765 | 10 |
|
11 |
IriSP.Widgets.HtmlPlayer.prototype.draw = function() { |
|
12 |
||
| 898 | 13 |
IriSP.htmlPlayer(this.media, this.$, this); |
| 765 | 14 |
|
| 955 | 15 |
}; |