about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/packs/error.js
blob: 9f692ad379f88b6df2b9dbbd22a7fd2bdd58e837 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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';
  });
});