From 486c6f7c8a5de804b382a32898d0d29884980c32 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Fri, 24 May 2013 13:13:07 -0400 Subject: [PATCH] Tweak index page and channellist --- www/channellist.html | 5 +---- www/index.html | 4 +--- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/www/channellist.html b/www/channellist.html index 3f6201d1..d22987a3 100644 --- a/www/channellist.html +++ b/www/channellist.html @@ -35,7 +35,6 @@ Channel - Title Connected Playing @@ -134,9 +133,8 @@ var tr = $("").appendTo($("#channeldata")); var name = $("").appendTo(tr); $("").attr("href", host + "/r/" + d.name) - .text(d.name) + .text(d.pagetitle + " (" + d.name + ")") .appendTo(name); - $("").text(d.pagetitle).appendTo(tr); $("").text(d.usercount || 0).appendTo(tr); var title = $("").appendTo(tr); if(d.media.id) { @@ -155,7 +153,6 @@ $("").text("Total").appendTo(tr); $("").text(total).appendTo(tr); $("").appendTo(tr); - $("").appendTo(tr); }); } diff --git a/www/index.html b/www/index.html index 85c06ec4..990ff914 100644 --- a/www/index.html +++ b/www/index.html @@ -52,7 +52,6 @@ Channel - Title Connected Playing @@ -144,9 +143,8 @@ var tr = $("").appendTo($("#channeldata")); var name = $("").appendTo(tr); $("").attr("href", host + "r/" + d.name) - .text(d.name) + .text(d.pagetitle + " (" + d.name + ")") .appendTo(name); - $("").text(d.pagetitle).appendTo(tr); $("").text(d.usercount || 0).appendTo(tr); var title = $("").appendTo(tr); if(d.media.id) {