forked from 0x2620/oxjs
events are lower case
This commit is contained in:
parent
151c701934
commit
ae82696600
1 changed files with 4 additions and 4 deletions
|
|
@ -420,7 +420,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
],
|
],
|
||||||
self.options.posterFrameControls ? [
|
self.options.posterFrameControls ? [
|
||||||
{},
|
{},
|
||||||
{id: 'gotoPosterFrame', title: 'Goto Poster Frame'},
|
{id: 'gotoPosterFrame', title: 'Go to Poster Frame'},
|
||||||
{id: 'setPosterFrame', title: 'Set Poster Frame'},
|
{id: 'setPosterFrame', title: 'Set Poster Frame'},
|
||||||
] : [],
|
] : [],
|
||||||
[
|
[
|
||||||
|
|
@ -449,14 +449,14 @@ Ox.VideoEditor = function(options, self) {
|
||||||
width: 256
|
width: 256
|
||||||
}).open();
|
}).open();
|
||||||
} else if (id == 'downloadVideo') {
|
} else if (id == 'downloadVideo') {
|
||||||
that.triggerEvent('downloadVideo');
|
that.triggerEvent('downloadvideo');
|
||||||
} else if (id == 'downloadSelection') {
|
} else if (id == 'downloadSelection') {
|
||||||
that.triggerEvent('downloadSelection', {
|
that.triggerEvent('downloadselection', {
|
||||||
'in': self.options['in'],
|
'in': self.options['in'],
|
||||||
out: self.options.out,
|
out: self.options.out,
|
||||||
});
|
});
|
||||||
} else if (id == 'embedSelection') {
|
} else if (id == 'embedSelection') {
|
||||||
that.triggerEvent('embedSelection', {
|
that.triggerEvent('embedselection', {
|
||||||
'in': self.options['in'],
|
'in': self.options['in'],
|
||||||
out: self.options.out,
|
out: self.options.out,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue