From ae82696600ac5aa0cd6a04c060a0fd618249e449 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 3 Feb 2012 14:43:20 +0000 Subject: [PATCH] events are lower case --- source/Ox.UI/js/Video/Ox.VideoEditor.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Ox.UI/js/Video/Ox.VideoEditor.js b/source/Ox.UI/js/Video/Ox.VideoEditor.js index 998fdece..0175c639 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditor.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditor.js @@ -420,7 +420,7 @@ Ox.VideoEditor = function(options, self) { ], self.options.posterFrameControls ? [ {}, - {id: 'gotoPosterFrame', title: 'Goto Poster Frame'}, + {id: 'gotoPosterFrame', title: 'Go to Poster Frame'}, {id: 'setPosterFrame', title: 'Set Poster Frame'}, ] : [], [ @@ -449,14 +449,14 @@ Ox.VideoEditor = function(options, self) { width: 256 }).open(); } else if (id == 'downloadVideo') { - that.triggerEvent('downloadVideo'); + that.triggerEvent('downloadvideo'); } else if (id == 'downloadSelection') { - that.triggerEvent('downloadSelection', { + that.triggerEvent('downloadselection', { 'in': self.options['in'], out: self.options.out, }); } else if (id == 'embedSelection') { - that.triggerEvent('embedSelection', { + that.triggerEvent('embedselection', { 'in': self.options['in'], out: self.options.out, });