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
173 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
export default function initLogoAnimation() {
window.addEventListener('beforeunload', () => {
2022-07-23 23:45:48 +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
}