Fix broken JS booleans

This commit is contained in:
Brian Lycett 2018-06-04 17:04:14 +01:00
parent f982e4df1f
commit 49f69e8eee
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ ldap_close($ldap_connection);
$('.list-right ul li.active').removeClass('active');
actives.remove();
}
$("#submit_members").prop("disabled", FALSE);
$("#submit_members").prop("disabled", false);
});
$('.dual-list .selector').click(function () {
var $checkBox = $(this);

View File

@ -288,7 +288,7 @@ if ($ldap_search) {
$('.list-right ul li.active').removeClass('active');
actives.remove();
}
$("#submit_members").prop("disabled", FALSE);
$("#submit_members").prop("disabled", false);
});
$('.dual-list .selector').click(function () {
var $checkBox = $(this);