2016-09-13 17:45:13 +05:30
|
|
|
(function() {
|
|
|
|
Turbolinks.enableProgressBar();
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
$(document).on('page:fetch', function() {
|
|
|
|
$('.tanuki-logo').addClass('animate');
|
|
|
|
});
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
$(document).on('page:change', function() {
|
|
|
|
$('.tanuki-logo').removeClass('animate');
|
|
|
|
});
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
}).call(this);
|