Remove uses of console.log()
This commit is contained in:
parent
4a32e0206f
commit
e10f876214
|
@ -28,7 +28,6 @@
|
|||
if (document.getElementById('company').value === "BananaCorp") {
|
||||
return
|
||||
}
|
||||
console.log(document.cookie);
|
||||
cookies = [
|
||||
'username',
|
||||
'company',
|
||||
|
@ -39,9 +38,7 @@
|
|||
'body',
|
||||
]
|
||||
for(let i = 0; i < cookies.length; i++) {
|
||||
console.log(cookies[i]);
|
||||
c = getCookie(cookies[i]);
|
||||
console.log(c);
|
||||
if (c) {
|
||||
document.getElementById(cookies[i]).value=c
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue