repo.or.cz
/
ninja.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added filterable to summary and histogram controllers
[ninja.git]
/
application
/
views
/
alert_history
/
js
/
alert_history.js
blob
260e20759996254a061c6aa3de060c85374d8617
1
$(
document
).
ready
(
function
() {
2
$(
'#show_all'
).
on
(
'change'
,
show_hide_obj_sel
);
3
show_hide_obj_sel
.
call
($(
'#show_all'
).
get
(
0
));
4
});
5
6
function
show_hide_obj_sel
() {
7
if
(
this
.
checked
)
8
$(
'.obj_selector'
).
hide
();
9
else
10
$(
'.obj_selector'
).
show
();
11
}