Files
sportspress/assets/js/sportspress.js
2014-01-09 16:15:15 +11:00

22 lines
391 B
JavaScript

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