From 667d22efa4db878688736f16ac44cd2b809fdc4c Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Sun, 14 Jul 2013 10:22:26 +0000 Subject: [PATCH] cosmetic changes --- source/Ox.UI/js/Video/VideoPanel.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/Ox.UI/js/Video/VideoPanel.js b/source/Ox.UI/js/Video/VideoPanel.js index 231888df..c3fdfb2b 100644 --- a/source/Ox.UI/js/Video/VideoPanel.js +++ b/source/Ox.UI/js/Video/VideoPanel.js @@ -370,19 +370,19 @@ Ox.VideoPanel = function(options, self) { } function getPlayerHeight() { - return self.options.height - - self.options.showTimeline * 80 - 1; + return self.options.height + - self.options.showTimeline * 80 - 1; } function getPlayerWidth() { - return self.options.width - - (self.options.showAnnotations && !self.fullscreen) + return self.options.width + - (self.options.showAnnotations && !self.fullscreen) * self.options.annotationsSize - 1; } function getTimelineWidth() { - return self.options.width - - (self.options.showAnnotations && !self.fullscreen) + return self.options.width + - (self.options.showAnnotations && !self.fullscreen) * self.options.annotationsSize - 16 - 1; }