Delete log lines

(cherry picked from commit 2437b0b81f)
This commit is contained in:
m-lopez-f 2016-09-19 10:46:12 +02:00
parent 3a63aa9589
commit 8b5aa318a3
1 changed files with 0 additions and 4 deletions

View File

@ -1013,14 +1013,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);
}