summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/logo.js
blob: 9404b2c3a8c3223ed4ea79e977ebb2315ef47aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable func-names, space-before-function-paren, prefer-arrow-callback, padded-blocks */
(function() {
  Turbolinks.enableProgressBar();

  $(document).on('page:fetch', function() {
    $('.tanuki-logo').addClass('animate');
  });

  $(document).on('page:change', function() {
    $('.tanuki-logo').removeClass('animate');
  });

}).call(this);