2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
//=include ../../../node_modules/svg4everybody/dist/svg4everybody.js
|
|
|
|
//=include ../../../node_modules/jquery/dist/jquery.js
|
|
|
|
|
2015-12-20 05:32:57 +01:00
|
|
|
//=include bigchain/analytics.js
|
2015-12-20 18:03:44 +01:00
|
|
|
//=include bigchain/forms.js
|
|
|
|
//=include bigchain/smoothscroll.js
|
2015-12-20 05:32:57 +01:00
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
jQuery(function($) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// init modules
|
|
|
|
//
|
2015-12-20 05:32:57 +01:00
|
|
|
GoogleAnalytics.init();
|
2015-12-20 18:03:44 +01:00
|
|
|
Forms.init();
|
|
|
|
SmoothScroll.init();
|
2015-12-20 05:22:45 +01:00
|
|
|
|
2015-12-20 19:52:34 +01:00
|
|
|
$('.hero .logo').on('animationend webkitAnimationEnd oAnimationEnd',
|
|
|
|
function(e) {
|
|
|
|
$('.hero').addClass('is-ready');
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
});
|