mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-27 20:24:39 +00:00
Merge pull request #12 from Radnik/master
Fixed iCheck for multiple pages. thx to @Radnik
This commit is contained in:
commit
675a502bcb
@ -74,13 +74,16 @@
|
|||||||
{% block extrascripts %}
|
{% block extrascripts %}
|
||||||
<script>
|
<script>
|
||||||
// set up user data table
|
// set up user data table
|
||||||
$("#tbl_users").DataTable({
|
$(document).ready(function(){
|
||||||
"paging" : true,
|
var table = $('#tbl_users').DataTable({
|
||||||
"lengthChange" : false,
|
'drawCallback': function(settings){
|
||||||
"searching" : true,
|
// iCheck for checkbox and radio inputs
|
||||||
"ordering" : true,
|
$('input[type="checkbox"]').iCheck({
|
||||||
"info" : true,
|
checkboxClass: 'icheckbox_square-blue',
|
||||||
"autoWidth" : false
|
increaseArea : '20%'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// handle revocation of privileges
|
// handle revocation of privileges
|
||||||
|
Loading…
x
Reference in New Issue
Block a user