debian-mirror-gitlab/app/assets/javascripts/logo.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
174 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
export default function initLogoAnimation() {
window.addEventListener('beforeunload', () => {
2022-11-25 23:54:43 +05:30
document.querySelector('.tanuki-logo')?.classList.add('animate');
2016-09-29 09:46:39 +05:30
});
2018-03-17 18:26:18 +05:30
}