mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
80388a3ffe
Fix #6060
14 lines
271 B
JavaScript
14 lines
271 B
JavaScript
import ready from '../mastodon/ready';
|
|
|
|
ready(() => {
|
|
const image = document.querySelector('img');
|
|
|
|
image.addEventListener('mouseenter', () => {
|
|
image.src = '/oops.gif';
|
|
});
|
|
|
|
image.addEventListener('mouseleave', () => {
|
|
image.src = '/oops.png';
|
|
});
|
|
});
|