projets
/
auf_coda_additions.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Patches CSS et JS et script de restauration
[auf_coda_additions.git]
/
js
/
auf.js
1
$
(
function
() {
2
var
checkboxes
=
$
(
'table.table tbody td:first-child input'
);
3
checkboxes
.
click
(
function
() {
4
var
row
=
$
(
this
).
closest
(
'tr'
);
5
row
.
toggleClass
(
'selected'
,
this
.
checked
);
6
});
7
});