Set max width on media title in history tables

Add watch history to show media info page
This commit is contained in:
Tim 2015-06-23 14:10:37 +02:00
parent 01601605e1
commit a4a44ec34f
6 changed files with 30 additions and 6 deletions

View file

@ -82,7 +82,7 @@ history_table_options = {
"name":"title",
"createdCell": function (td, cellData, rowData, row, col) {
if (cellData !== '') {
$(td).html('<a href="info?rating_key=' + rowData['rating_key'] + '">' + cellData + '</a>');
$(td).html('<div class="history-table-title"><a href="info?rating_key=' + rowData['rating_key'] + '">' + cellData + '</a></div>');
}
}
},