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: 3688a57937e0c0b221524575ea0489c33b5de63c (plain)
1
2
3
4
5
export default function initLogoAnimation() {
  window.addEventListener('beforeunload', () => {
    $('.tanuki-logo').addClass('animate');
  });
}