From e3fee962e75bd439a0103443b7083ae4a25069ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20B=C3=B6ttcher?= Date: Fri, 31 Jul 2015 09:58:16 +0200 Subject: [PATCH] Style last playlist column --- public/js/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/js/index.js b/public/js/index.js index d5ab054..a988550 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -44,7 +44,12 @@ $(function () { var tableRow = document.createElement('tr'); var cell = document.createElement('td'); - $(cell).text('...'); + $(cell).html(''); + $(cell).attr('colspan', '3'); + $(cell).css({ + 'text-align': 'center', + 'color': '#777' + }); $(tableRow).append(cell); $('#tbody_playlist').append(tableRow);