mirror of
https://github.com/Akkadius/glass-isc-dhcp.git
synced 2025-09-12 12:28:38 +02:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
$(function () {
|
|
$('.js-basic-example').DataTable({
|
|
responsive: true
|
|
});
|
|
|
|
//Exportable table
|
|
$('.js-exportable').DataTable({
|
|
dom: 'Bfrtip',
|
|
responsive: true,
|
|
buttons: [
|
|
'copy', 'csv', 'excel', 'pdf', 'print'
|
|
]
|
|
});
|
|
}); |