mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
813c84cd6c
Port 4c45b43cb8
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
import 'packs/public-path';
|
|
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';
|
|
});
|
|
});
|