From 4721d3722f0eefd217788c57a79c93ad7f10ab99 Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Tue, 18 Mar 2014 18:02:30 -0700 Subject: [PATCH] Added data- attributes Expose width/height that may help set video player size when creating DOM elements --- dashboard-ui/scripts/itemdetailpage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index 782e6a381a..2e783dc3b5 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1015,7 +1015,7 @@ } if (stream.Width || stream.Height) { - attributes.push('' + stream.Width + 'x' + stream.Height + ''); + attributes.push('' + stream.Width + 'x' + stream.Height + ''); } if (stream.AspectRatio && stream.Codec != "mjpeg") {