Files
sportspress/assets/js/sportspress.js
2014-01-08 12:18:39 +11:00

21 lines
364 B
JavaScript

(function($) {
// Data tables
$('.sp-data-table').dataTable({
'aaSorting': [],
'bFilter': false,
'bInfo': false,
'bPaginate': false,
'bSort': true,
'oLanguage': {
'oAria': {
'sSortAscending': '',
'sSortDescending': ''
}
},
'aoColumnDefs': [
{ 'bSortable': false, 'aTargets': [ 0 ] }
]
});
})(jQuery);