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);