blob: 81c86c3abb7ca4d1c23d97a9bd9863c6d83e9864 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import ready from 'flavours/glitch/util/ready';
ready(() => {
const image = document.querySelector('img');
image.addEventListener('mouseenter', () => {
image.src = '/oops.gif';
});
image.addEventListener('mouseleave', () => {
image.src = '/oops.png';
});
});
|