pass cut and cutadd events, remove event -> delete event
This commit is contained in:
parent
ee40d049dc
commit
989cb2c945
1 changed files with 9 additions and 3 deletions
|
@ -300,6 +300,15 @@ Ox.VideoEditPanel = function(options, self) {
|
||||||
copyadd: function(data) {
|
copyadd: function(data) {
|
||||||
that.triggerEvent('copyadd', 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) {
|
edit: function(data) {
|
||||||
that.triggerEvent('edit', data);
|
that.triggerEvent('edit', data);
|
||||||
},
|
},
|
||||||
|
@ -313,9 +322,6 @@ Ox.VideoEditPanel = function(options, self) {
|
||||||
paste: function() {
|
paste: function() {
|
||||||
that.triggerEvent('paste');
|
that.triggerEvent('paste');
|
||||||
},
|
},
|
||||||
remove: function(data) {
|
|
||||||
that.triggerEvent('remove', data);
|
|
||||||
},
|
|
||||||
resize: resizeClips,
|
resize: resizeClips,
|
||||||
resizeend: resizeendClips,
|
resizeend: resizeendClips,
|
||||||
select: function(data) {
|
select: function(data) {
|
||||||
|
|
Loading…
Reference in a new issue