14 lines
375 B
JavaScript
14 lines
375 B
JavaScript
$(function () {
|
|
$(document).ready(function() {
|
|
$('#registrations-datatable').dataTable();
|
|
});
|
|
$(document).ready(function() {
|
|
$('#users-datatable').dataTable();
|
|
});
|
|
$(document).ready(function() {
|
|
$('#events-datatable').dataTable();
|
|
});
|
|
$(document).ready(function() {
|
|
$('#buyers-datatable').dataTable();
|
|
});
|
|
} );
|