removing useless logs
This commit is contained in:
parent
c6b1937e6c
commit
a97d0e4d47
1 changed files with 2 additions and 2 deletions
|
@ -7,11 +7,11 @@ let links = [ portfolio[0], art[0], lore[0] ];
|
||||||
|
|
||||||
links.forEach((link) => {
|
links.forEach((link) => {
|
||||||
link.addEventListener('mouseover', (e) => {
|
link.addEventListener('mouseover', (e) => {
|
||||||
console.log('hovered');
|
//console.log('hovered');
|
||||||
box.classList.add('colorBorder');
|
box.classList.add('colorBorder');
|
||||||
});
|
});
|
||||||
link.addEventListener('mouseleave', (e) => {
|
link.addEventListener('mouseleave', (e) => {
|
||||||
console.log('left');
|
//console.log('left');
|
||||||
box.classList.remove('colorBorder');
|
box.classList.remove('colorBorder');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue