From 363f71b57339d35bfb934b212be953aa39482dd7 Mon Sep 17 00:00:00 2001 From: Techywarrior Date: Tue, 2 Apr 2013 15:13:48 -0700 Subject: [PATCH] move year below title in now playing bar for movies --- dashboard-ui/scripts/mediaplayer.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/mediaplayer.js b/dashboard-ui/scripts/mediaplayer.js index de02e1e26a..6910df9b4d 100644 --- a/dashboard-ui/scripts/mediaplayer.js +++ b/dashboard-ui/scripts/mediaplayer.js @@ -115,7 +115,10 @@ } html += "
"; - html += '
' + series_name + '
' + name + '
'; + if (item.Type == "Movie") + html += '
' + name + '
' + series_name + '
'; + else + html += '
' + series_name + '
' + name + '
'; $('#mediaInfo', nowPlayingBar).html(html); },