initial import

This commit is contained in:
2017-03-06 17:58:18 +01:00
commit 0e7b015d20
276 changed files with 101193 additions and 0 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);
}
});
});