pass cut and cutadd events, remove event -> delete event

This commit is contained in:
rlx 2013-08-03 13:57:03 +00:00
parent ee40d049dc
commit 989cb2c945

View file

@ -300,6 +300,15 @@ Ox.VideoEditPanel = function(options, self) {
copyadd: function(data) {
that.triggerEvent('copyadd', data);
},
cut: function(data) {
that.triggerEvent('cut', data);
},
cutadd: function(data) {
that.triggerEvent('cutadd', data);
},
'delete': function(data) {
that.triggerEvent('delete', data);
},
edit: function(data) {
that.triggerEvent('edit', data);
},
@ -313,9 +322,6 @@ Ox.VideoEditPanel = function(options, self) {
paste: function() {
that.triggerEvent('paste');
},
remove: function(data) {
that.triggerEvent('remove', data);
},
resize: resizeClips,
resizeend: resizeendClips,
select: function(data) {