1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-18 16:43:51 -05:00

15 lines
303 B
JavaScript

import 'packs/public-path';
import ready from 'flavours/glitch/ready';
ready(() => {
const image = document.querySelector('img');
image.addEventListener('mouseenter', () => {
image.src = '/oops.gif';
});
image.addEventListener('mouseleave', () => {
image.src = '/oops.png';
});
});