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