diff --git a/dashboard-ui/css/livetv.css b/dashboard-ui/css/livetv.css index a697f935e1..5f3b08ba65 100644 --- a/dashboard-ui/css/livetv.css +++ b/dashboard-ui/css/livetv.css @@ -25,7 +25,7 @@ top: 0; left: 0; bottom: 0; - border-bottom: 1px solid #555; + border-bottom: 1px solid #444; } .tvProgramTimeSlotInner { @@ -34,12 +34,15 @@ .tvProgramInfo { vertical-align: middle; - border-left: 1px solid #444; padding: .5em .5em; - margin-left: 80px; border-bottom: 1px solid #444; } +.tvProgramTimeSlot + .tvProgramInfo { + margin-left: 80px; + border-left: 1px solid #444; +} + .tvProgramName { color: #fff; font-weight: bold; diff --git a/dashboard-ui/livetvseriestimer.html b/dashboard-ui/livetvseriestimer.html index f0be3e6553..c37d48f17e 100644 --- a/dashboard-ui/livetvseriestimer.html +++ b/dashboard-ui/livetvseriestimer.html @@ -100,7 +100,7 @@ - diff --git a/dashboard-ui/livetvseriestimers.html b/dashboard-ui/livetvseriestimers.html index 9fab9a4008..15713d3c5a 100644 --- a/dashboard-ui/livetvseriestimers.html +++ b/dashboard-ui/livetvseriestimers.html @@ -13,8 +13,10 @@ Series
-
-
+
+
+
+
diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 1eb1b270e0..6e91ad86c9 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -1212,7 +1212,7 @@ html.push('' + item.SeriesName + ''); } - else if (item.ParentIndexNumber && item.Type == "Episode") { + else if (item.ParentIndexNumber != null && item.Type == "Episode") { html.push('Season ' + item.ParentIndexNumber + ''); } diff --git a/dashboard-ui/scripts/livetvchannel.js b/dashboard-ui/scripts/livetvchannel.js index 1dac1ce771..9e5f38eff3 100644 --- a/dashboard-ui/scripts/livetvchannel.js +++ b/dashboard-ui/scripts/livetvchannel.js @@ -15,20 +15,6 @@ var html = ''; - //var cssClass = "detailTable"; - - //html += '
'; - - //html += ''; - - //html += ''; - //html += ''; - //html += ''; - //html += ''; - //html += ''; - - //html += ''; - var currentIndexValue; for (var i = 0, length = result.Items.length; i < length; i++) { @@ -114,49 +100,9 @@ html += ''; html += ''; - //html += ''; - - //html += ''; - - //var startDate = program.StartDate; - - //try { - - // startDate = parseISO8601Date(startDate, { toLocal: true }); - - //} catch (err) { - - //} - - //html += ''; - - //html += ''; - - //html += ''; - - //html += ''; - html += ''; } - //html += '
 DateStartEndName
'; - - //if (program.RecordingId) { - // html += ''; - //} else { - // html += 'Record'; - //} - - //html += '' + startDate.toLocaleDateString() + '' + LiveTvHelpers.getDisplayTime(program.StartDate) + '' + LiveTvHelpers.getDisplayTime(program.EndDate) + ''; - - //if (program.Name) { - // //html += ''; - // html += program.Name; - // //html += ''; - //} - - //html += '
'; - $('#programList', page).html(html).trigger('create'); }