| author | Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com> |
| Fri, 13 May 2016 13:04:44 +0200 | |
| changeset 1349 | f9b3f9009c7c |
| parent 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 = { |
|
| 955 | 9 |
}; |
| 765 | 10 |
|
11 |
IriSP.Widgets.HtmlPlayer.prototype.draw = function() { |
|
12 |
||
| 898 | 13 |
IriSP.htmlPlayer(this.media, this.$, this); |
| 765 | 14 |
|
| 955 | 15 |
}; |