mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 22:50:26 +00:00
Fixed iCheck for multiple pages
This commit is contained in:
parent
971d6b2e28
commit
9855bc70dc
@ -74,13 +74,16 @@
|
||||
{% block extrascripts %}
|
||||
<script>
|
||||
// set up user data table
|
||||
$("#tbl_users").DataTable({
|
||||
"paging" : true,
|
||||
"lengthChange" : false,
|
||||
"searching" : true,
|
||||
"ordering" : true,
|
||||
"info" : true,
|
||||
"autoWidth" : false
|
||||
$(document).ready(function(){
|
||||
var table = $('#tbl_users').DataTable({
|
||||
'drawCallback': function(settings){
|
||||
// iCheck for checkbox and radio inputs
|
||||
$('input[type="checkbox"]').iCheck({
|
||||
checkboxClass: 'icheckbox_square-blue',
|
||||
increaseArea : '20%'
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// handle revocation of privileges
|
||||
|
Loading…
Reference in New Issue
Block a user