diff --git a/source/Ox.UI/js/Video/VideoAnnotationPanel.js b/source/Ox.UI/js/Video/VideoAnnotationPanel.js index 51026a9d..8daadabf 100644 --- a/source/Ox.UI/js/Video/VideoAnnotationPanel.js +++ b/source/Ox.UI/js/Video/VideoAnnotationPanel.js @@ -180,7 +180,6 @@ Ox.VideoAnnotationPanel = function(options, self) { }, key_enter: function() { if (self.editing) { - // submitAnnotation(); blurAnnotation(); } else if (isEditable()) { editAnnotation(); @@ -238,6 +237,13 @@ Ox.VideoAnnotationPanel = function(options, self) { key_shift_down: function() { movePositionBy(self.options.duration); }, + key_shift_enter: function() { + if (self.editing) { + blurAnnotation(); + } else if (isEditable()) { + editAnnotation(); + } + }, key_shift_equal: function() { self.options.videoSize == 'small' && toggleSize(); },