Prevent event propagation for remaining tables
parent
bcad71cfaa
commit
1b54d75716
|
@ -1068,6 +1068,10 @@ jQuery(function($){
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$('body').on('click', 'span.footable-toggle', function () {
|
||||||
|
event.stopPropagation();
|
||||||
|
})
|
||||||
|
|
||||||
draw_domain_table();
|
draw_domain_table();
|
||||||
draw_mailbox_table();
|
draw_mailbox_table();
|
||||||
draw_resource_table();
|
draw_resource_table();
|
||||||
|
|
|
@ -114,7 +114,7 @@ jQuery(function($){
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$('table tbody').on('click', 'span.footable-toggle', function () {
|
$('body').on('click', 'span.footable-toggle', function () {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -236,6 +236,11 @@ jQuery(function($){
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$('body').on('click', 'span.footable-toggle', function () {
|
||||||
|
event.stopPropagation();
|
||||||
|
})
|
||||||
|
|
||||||
draw_sync_job_table();
|
draw_sync_job_table();
|
||||||
draw_tla_table();
|
draw_tla_table();
|
||||||
draw_wl_policy_mailbox_table();
|
draw_wl_policy_mailbox_table();
|
||||||
|
|
Loading…
Reference in New Issue