Added filterable to summary and histogram controllers
[ninja.git] / application / views / alert_history / js / alert_history.js
blob260e20759996254a061c6aa3de060c85374d8617
1 $(document).ready(function() {
2 $('#show_all').on('change', show_hide_obj_sel);
3 show_hide_obj_sel.call($('#show_all').get(0));
4 });
6 function show_hide_obj_sel() {
7 if (this.checked)
8 $('.obj_selector').hide();
9 else
10 $('.obj_selector').show();