Delete log lines

This commit is contained in:
m-lopez-f 2016-09-19 10:46:12 +02:00
parent b84acc2abc
commit 2437b0b81f
1 changed files with 0 additions and 4 deletions
pandora_console/include/javascript

View File

@ -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);
}