mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
28 lines
584 B
JavaScript
28 lines
584 B
JavaScript
|
|
//=include ../../../node_modules/svg4everybody/dist/svg4everybody.js
|
|
//=include ../../../node_modules/jquery/dist/jquery.js
|
|
|
|
//=include bigchain/analytics.js
|
|
//=include bigchain/forms.js
|
|
//=include bigchain/smoothscroll.js
|
|
|
|
//=include bigchain/form-earlyaccess.js
|
|
|
|
jQuery(function($) {
|
|
|
|
//
|
|
// init modules
|
|
//
|
|
GoogleAnalytics.init();
|
|
Forms.init();
|
|
SmoothScroll.init();
|
|
FormEarlyAccess.init();
|
|
|
|
$('.hero .logo').on('animationend webkitAnimationEnd oAnimationEnd',
|
|
function(e) {
|
|
$('.hero').addClass('is-ready');
|
|
}
|
|
);
|
|
|
|
});
|