Remove uses of console.log()

This commit is contained in:
Sage Vaillancourt 2021-07-28 18:46:16 -04:00
parent 4a32e0206f
commit e10f876214
1 changed files with 0 additions and 3 deletions

View File

@ -28,7 +28,6 @@
if (document.getElementById('company').value === "BananaCorp") { if (document.getElementById('company').value === "BananaCorp") {
return return
} }
console.log(document.cookie);
cookies = [ cookies = [
'username', 'username',
'company', 'company',
@ -39,9 +38,7 @@
'body', 'body',
] ]
for(let i = 0; i < cookies.length; i++) { for(let i = 0; i < cookies.length; i++) {
console.log(cookies[i]);
c = getCookie(cookies[i]); c = getCookie(cookies[i]);
console.log(c);
if (c) { if (c) {
document.getElementById(cookies[i]).value=c document.getElementById(cookies[i]).value=c
} }