Revision ec8854b1
Added by Frédéric Péters about 13 years ago
| calebasse/static/js/calebasse.facturation.js | ||
|---|---|---|
|
(function($) {
|
||
|
$(function() {
|
||
|
$('#hide-dossiers-cb').change(function() {
|
||
|
var val = $(this).is(':checked');
|
||
|
if ($(this).is(':checked')) {
|
||
|
$('#dossiers-concernes div.dossier:not(.facturable)').hide('fold');
|
||
|
} else {
|
||
|
$('#dossiers-concernes div.dossier').show('fold');
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
})(window.jQuery)
|
||
Also available in: Unified diff
facturation: make "hide dossiers" checkbox functional (#2057)