mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-02 00:05:37 +01:00
36 lines
789 B
JavaScript
36 lines
789 B
JavaScript
|
|
||
|
//=include ../../../../node_modules/is-in-viewport/lib/isInViewport.js
|
||
|
|
||
|
var Testimonials = (function(w, d, $) {
|
||
|
|
||
|
'use strict'
|
||
|
|
||
|
var app, _private, _config
|
||
|
|
||
|
_config = {
|
||
|
testimonials: $('.testimonials'),
|
||
|
testimonial: $('.testimonial')
|
||
|
}
|
||
|
|
||
|
_private = {
|
||
|
toggleReady: function() {
|
||
|
$(window).on('load resize scroll',function() {
|
||
|
if (_config.testimonials.is( ':in-viewport()' ) ) {
|
||
|
_config.testimonials.addClass('is-ready');
|
||
|
} else {
|
||
|
_config.testimonials.removeClass('is-ready');
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
}
|
||
|
|
||
|
app = {
|
||
|
init: function() {
|
||
|
_private.toggleReady();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return app
|
||
|
|
||
|
})(window, document, jQuery)
|