mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
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();
|
|
});
|
|
} );
|