1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-27 10:03:11 -05:00
2019-02-17 12:27:01 +01:00

14 lines
280 B
JavaScript

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';
});
});