chargement initial

This commit is contained in:
CAO Thien-An
2017-07-22 11:25:44 +02:00
parent 6aa83a3286
commit 2093b3588f
285 changed files with 101783 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
$(document).ready(function () {
$(".select_bill").change(
function () {
if ($(".select_bill:checked").length) {
$('button#calculate').removeProp('disabled');
} else {
$('button#calculate').prop('disabled', true);
}
});
});