Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logo.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca3f1caec6702b703c160ac2d0286d5b77543ef2 (plain)
1
2
3
4
5
export default function initLogoAnimation() {
  window.addEventListener('beforeunload', () => {
    document.querySelector('.tanuki-logo')?.classList.add('animate');
  });
}