14 lines
308 B
JavaScript
Vendored
14 lines
308 B
JavaScript
Vendored
$(function(){
|
|
//路由表表格套用datatable
|
|
app.utils.dataTable('.table.routes', {
|
|
paginate: false,
|
|
responsive: true,
|
|
});
|
|
|
|
//Gate Ability表格套用datatable
|
|
app.utils.dataTable('.table.gate-abilities', {
|
|
paginate: false,
|
|
responsive: true,
|
|
});
|
|
});
|