pass info event in player and timeline panels
This commit is contained in:
parent
a1c82cb262
commit
a56329064d
2 changed files with 6 additions and 0 deletions
|
@ -233,6 +233,9 @@ Ox.VideoPanel = function(options, self) {
|
||||||
self.options.annotationsSort = data.sort;
|
self.options.annotationsSort = data.sort;
|
||||||
that.triggerEvent('annotationssort', data);
|
that.triggerEvent('annotationssort', data);
|
||||||
},
|
},
|
||||||
|
info: function(data) {
|
||||||
|
that.triggerEvent('info', data);
|
||||||
|
},
|
||||||
open: function() {
|
open: function() {
|
||||||
setPosition(self.options['in']);
|
setPosition(self.options['in']);
|
||||||
},
|
},
|
||||||
|
|
|
@ -149,6 +149,9 @@ Ox.VideoTimelinePanel = function(options, self) {
|
||||||
self.options.annotationsSort = data.sort;
|
self.options.annotationsSort = data.sort;
|
||||||
that.triggerEvent('annotationssort', data);
|
that.triggerEvent('annotationssort', data);
|
||||||
},
|
},
|
||||||
|
info: function(data) {
|
||||||
|
that.triggerEvent('info', data);
|
||||||
|
},
|
||||||
open: function() {
|
open: function() {
|
||||||
setPosition(self.options['in']);
|
setPosition(self.options['in']);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue