diff --git a/source/Ox.UI/js/Video/VideoEditor.js b/source/Ox.UI/js/Video/VideoEditor.js index 6ef43c14..10b2cd34 100644 --- a/source/Ox.UI/js/Video/VideoEditor.js +++ b/source/Ox.UI/js/Video/VideoEditor.js @@ -151,6 +151,13 @@ Ox.VideoEditor = function(options, self) { key_comma: function() { movePositionTo('cut', -1); }, + key_control_c: function() { + that.triggerEvent('copy', [{ + annotation: self.options.selected, + 'in': self.options['in'], + out: self.options.out + }]); + }, key_delete: function() { self.$annotationPanel.removeItem(true); }, @@ -216,6 +223,13 @@ Ox.VideoEditor = function(options, self) { key_shift_0: function() { movePositionBy(-self.options.position); }, + key_shift_control_c: function() { + that.triggerEvent('copyadd', [{ + annotation: self.options.selected, + 'in': self.options['in'], + out: self.options.out + }]); + }, key_shift_down: function() { movePositionBy(self.options.duration); },