Skip to content
This repository has been archived by the owner on Jun 14, 2019. It is now read-only.

Commit

Permalink
Style last playlist column
Browse files Browse the repository at this point in the history
  • Loading branch information
eljenso committed Jul 31, 2015
1 parent e59a1fc commit e3fee96
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion public/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ $(function () {

var tableRow = document.createElement('tr');
var cell = document.createElement('td');
$(cell).text('...');
$(cell).html('<span class="glyphicon glyphicon-option-vertical" aria-hidden="true"></span>');
$(cell).attr('colspan', '3');
$(cell).css({
'text-align': 'center',
'color': '#777'
});
$(tableRow).append(cell);
$('#tbody_playlist').append(tableRow);

Expand Down

0 comments on commit e3fee96

Please sign in to comment.