| author | durandn |
| Tue, 01 Sep 2015 15:31:46 +0200 | |
| changeset 1046 | eb77616c245f |
| parent 1013 | 392ddcd212d7 |
| child 1072 | ac1eacb3aa33 |
| 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 = { |
|
| 1013 | 9 |
}; |
| 986 | 10 |
|
11 |
IriSP.Widgets.HtmlPlayer.prototype.draw = function() { |
|
12 |
||
| 998 | 13 |
IriSP.htmlPlayer(this.media, this.$, this); |
| 986 | 14 |
|
| 1013 | 15 |
}; |