diff --git a/source/Ox.UI/js/Video/AnnotationPanel.js b/source/Ox.UI/js/Video/AnnotationPanel.js index e24348b4..f5695c4f 100644 --- a/source/Ox.UI/js/Video/AnnotationPanel.js +++ b/source/Ox.UI/js/Video/AnnotationPanel.js @@ -264,7 +264,7 @@ Ox.AnnotationPanel = function(options, self) { if (self.options.selected) { annotation = getAnnotation(self.options.selected); folder = getFolder(self.options.selected); - if(annotation && folder) { + if (annotation && folder) { key = folder.options('id'); type = folder.options('type'); value = annotation.value; diff --git a/source/Ox.UI/js/Video/VideoPreview.js b/source/Ox.UI/js/Video/VideoPreview.js index d99e8cd6..b6bb3d18 100644 --- a/source/Ox.UI/js/Video/VideoPreview.js +++ b/source/Ox.UI/js/Video/VideoPreview.js @@ -56,7 +56,7 @@ Ox.VideoPreview = function(options, self) { .css(getFrameCSS()) .appendTo(self.$frameElement); - if(self.options.timeline) { + if (self.options.timeline) { self.$timeline = $('') .addClass('OxTimeline') .attr({src: self.options.timeline})