fix bugs in video panel player
This commit is contained in:
parent
4348894ad1
commit
2b3d8807d9
1 changed files with 1 additions and 3 deletions
|
@ -1,7 +1,5 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
||||
|
||||
'use strict';
|
||||
|
||||
/*@
|
||||
Ox.VideoPanelPlayer <f:Ox.Element> VideoPanelPlayer Object
|
||||
() -> <f> VideoPanelPlayer Object
|
||||
|
@ -99,13 +97,13 @@ Ox.VideoPanelPlayer = function(options, self) {
|
|||
fullscreen: function(data) {
|
||||
self.options.fullscreen = data.fullscreen;
|
||||
},
|
||||
position: setPosition,
|
||||
muted: function(data) {
|
||||
that.triggerEvent('muted', data);
|
||||
},
|
||||
paused: function(data) {
|
||||
that.triggerEvent('paused', data);
|
||||
},
|
||||
playing: setPosition,
|
||||
position: function(data) {
|
||||
that.triggerEvent('position', data);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue