mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-02 08:21:58 +01:00
20 lines
359 B
JavaScript
20 lines
359 B
JavaScript
|
|
//=include bigchain/hero-video.js
|
|
//=include bigchain/smoothscroll.js
|
|
//=include bigchain/testimonials.js
|
|
|
|
jQuery(function($) {
|
|
|
|
// hero stuff
|
|
HeroVideo.init();
|
|
|
|
$('.hero .logo').on('animationend webkitAnimationEnd oAnimationEnd',
|
|
function(e) {
|
|
$('.hero').addClass('is-ready');
|
|
}
|
|
);
|
|
|
|
Testimonials.init();
|
|
|
|
});
|