fix own button

main
msquare 7 years ago
parent 752ccdc482
commit 5792c96eaa

@ -17,8 +17,8 @@ function checkAll(id, checked) {
* @param {list} shifts_list A list of numbers * @param {list} shifts_list A list of numbers
*/ */
function checkOwnTypes(id, shifts_list) { function checkOwnTypes(id, shifts_list) {
$('#' + id + ' input[type=checkbox]').each(function () { $("#" + id + " input[type='checkbox']").each(function () {
this.checked = $.inArray(parseInt(this.value), shifts_list); this.checked = $.inArray(parseInt(this.value), shifts_list) != -1;
}); });
} }

Loading…
Cancel
Save