mirror of
https://github.com/mehotkhan/BandersnatchInteractive.git
synced 2025-07-27 17:23:22 +00:00
refactor: remove console.log
This commit is contained in:
parent
7c488e318f
commit
2519bb1122
1 changed files with 1 additions and 3 deletions
|
@ -267,7 +267,7 @@ function addZones(segmentId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function selectDigit(digit, p) {
|
function selectDigit(digit) {
|
||||||
if (selectedDigits.length <= 5) {
|
if (selectedDigits.length <= 5) {
|
||||||
const emptyInputField = getEmptyInputField();
|
const emptyInputField = getEmptyInputField();
|
||||||
if (emptyInputField) {
|
if (emptyInputField) {
|
||||||
|
@ -278,10 +278,8 @@ function selectDigit(digit, p) {
|
||||||
if (selectedDigits.length >= 5) {
|
if (selectedDigits.length >= 5) {
|
||||||
var code = selectedDigits.join('');
|
var code = selectedDigits.join('');
|
||||||
if (code == "20541"){
|
if (code == "20541"){
|
||||||
console.log(p)
|
|
||||||
choice(0);
|
choice(0);
|
||||||
} else{
|
} else{
|
||||||
console.log(p)
|
|
||||||
choice(1);
|
choice(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue