diff --git a/dashboard-ui/css/posteritem.css b/dashboard-ui/css/posteritem.css index a4de72831e..7e1fee2854 100644 --- a/dashboard-ui/css/posteritem.css +++ b/dashboard-ui/css/posteritem.css @@ -191,7 +191,6 @@ .sessionPosterItem .posterItemName { color: #fff!important; - font-weight: normal !important; } .sessionPosterItem .posterItemDefaultText { diff --git a/dashboard-ui/scripts/dashboardpage.js b/dashboard-ui/scripts/dashboardpage.js index c416d355f5..3d98d72cb4 100644 --- a/dashboard-ui/scripts/dashboardpage.js +++ b/dashboard-ui/scripts/dashboardpage.js @@ -192,7 +192,7 @@ } html += "
"; - html += ''; + html += ''; html += "
"; html += ""; @@ -306,7 +306,7 @@ getSessionItemText: function (connection) { var html = ''; - + html += '
'; html += DashboardPage.getUsersHtml(connection); html += '
'; @@ -420,28 +420,6 @@ return ""; }, - getNowPlayingText: function (connection, item) { - - var html = ""; - - if (item) { - - html += "
" + item.Name + "
"; - - html += "
"; - - if (item.RunTimeTicks) { - html += Dashboard.getDisplayTime(connection.NowPlayingPositionTicks || 0) + " / "; - - html += Dashboard.getDisplayTime(item.RunTimeTicks); - } - - html += "
"; - } - - return html; - }, - renderRunningTasks: function (dashboardInfo) { var page = $.mobile.activePage;