Remove uses of console.log()
This commit is contained in:
parent
4a32e0206f
commit
e10f876214
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue