From ca42e40d12b6b3d7930ce8e82beb08af6c2af658 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 23 Apr 2015 12:50:54 -0400 Subject: [PATCH] control the number of simultaneous image operations --- dashboard-ui/scripts/mediaplayer-video.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard-ui/scripts/mediaplayer-video.js b/dashboard-ui/scripts/mediaplayer-video.js index 62f8658180..8e0eb29565 100644 --- a/dashboard-ui/scripts/mediaplayer-video.js +++ b/dashboard-ui/scripts/mediaplayer-video.js @@ -942,8 +942,8 @@ }); // Get Video Poster (Code from librarybrowser.js) - var screenWidth = Math.max(screen.height, screen.width), - posterCode = ''; + var screenWidth = Math.max(screen.height, screen.width); + var posterCode = ''; if (item.BackdropImageTags && item.BackdropImageTags.length) { @@ -961,7 +961,7 @@ type: 'Backdrop', index: 0, maxWidth: screenWidth, - tag: item.ParentBackdropImageTags[0] + tag: item.ParentBackdropImageTags[0] }) + '"'; }