diff --git a/source/Ox.UI/js/Video/AnnotationFolder.js b/source/Ox.UI/js/Video/AnnotationFolder.js index fc6825d2..b5dc4719 100644 --- a/source/Ox.UI/js/Video/AnnotationFolder.js +++ b/source/Ox.UI/js/Video/AnnotationFolder.js @@ -267,7 +267,11 @@ Ox.AnnotationFolder = function(options, self) { : null, highlight: self.options.highlight, items: self.annotations, - placeholder: 'No ' + self.options.title, + placeholder: 'No ' + self.options.title + ( + self.options.range == 'position' ? ' at Current Position' + : self.options.range == 'selection' ? ' in Current Selection' + : '' + ), selected: self.options.selected, separator: ';', sort: self.sort,