diff --git a/source/Ox.UI/js/Video/AnnotationFolder.js b/source/Ox.UI/js/Video/AnnotationFolder.js index 484139b3..f08c9710 100644 --- a/source/Ox.UI/js/Video/AnnotationFolder.js +++ b/source/Ox.UI/js/Video/AnnotationFolder.js @@ -42,6 +42,7 @@ Ox.AnnotationFolder = function(options, self) { 'in': 0, item: '', items: [], + keyboard: '', out: 0, position: 0, range: 'all', @@ -122,7 +123,8 @@ Ox.AnnotationFolder = function(options, self) { id: 'add', style: 'symbol', title: 'add', - tooltip: Ox._('Add {0}', [self.options.item]), + tooltip: Ox._('Add {0}', [self.options.item]) + + (self.options.keyboard ? ' [' + self.options.keyboard + ']' : ''), type: 'image' }) .bindEvent({ diff --git a/source/Ox.UI/js/Video/AnnotationPanel.js b/source/Ox.UI/js/Video/AnnotationPanel.js index d66296d4..817d050d 100644 --- a/source/Ox.UI/js/Video/AnnotationPanel.js +++ b/source/Ox.UI/js/Video/AnnotationPanel.js @@ -314,6 +314,7 @@ Ox.AnnotationPanel = function(options, self) { font: self.options.font, highlight: self.options.highlight, 'in': self.options['in'], + keyboard: index + 1 + '', out: self.options.out, position: self.options.position, range: self.options.range,