plexpy/data/interfaces/default/js/tables/plex_logs.js
Tim b8f2ea951d Remove responsive datatables plugin - use normal media queries.
Set datatables stateSave to true as default
Remove some old images.
Change button on edit user modal
2015-07-20 01:16:43 +02:00

32 lines
1,016 B
JavaScript

var plex_log_table_options = {
"destroy": true,
"processing": false,
"serverSide": false,
"sPaginationType": "bootstrap",
"order": [ 0, 'desc'],
"pageLength": 10,
"stateSave": true,
"language": {
"search":"Search: ",
"lengthMenu":"Show _MENU_ lines per page",
"emptyTable": "No log information available. Have you set your logs folder in the <a href='config'>settings</a>?",
"info":"Showing _START_ to _END_ of _TOTAL_ lines",
"infoEmpty":"Showing 0 to 0 of 0 lines",
"infoFiltered":"(filtered from _MAX_ total lines)"},
"columnDefs": [
{
"targets": [0],
"width": "15%",
"className": "no-wrap hidden-phone"
},
{
"targets": [1],
"width": "10%",
"className": "no-wrap hidden-tablet hidden-phone"
},
{
"targets": [2],
"width": "75%"
}
]
}