Delete log lines
This commit is contained in:
parent
b84acc2abc
commit
2437b0b81f
pandora_console/include/javascript
|
@ -1027,14 +1027,10 @@ function autoclick_profile_users(actual_level, firts_level, second_level) {
|
|||
if ($('#checkbox-' + actual_level).is(":checked")) {
|
||||
if (typeof firts_level !== "undefined") {
|
||||
var is_checked_firts = $('#checkbox-' + firts_level).is(':checked');
|
||||
console.log("FIRTS");
|
||||
console.log(is_checked_firts);
|
||||
if (!is_checked_firts) {
|
||||
$('#checkbox-' + firts_level).prop('checked', true);
|
||||
}
|
||||
if (second_level !== false) {
|
||||
console.log("SECOND");
|
||||
console.log($('#checkbox-' + second_level).is(":checked"));
|
||||
if (!$('#checkbox-' + second_level).is(":checked")) {
|
||||
$('#checkbox-' + second_level).prop('checked', true);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue