| Current Path : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/timeline/js/ |
| Current File : /home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/timeline/js/timeline.js |
jQuery(document).ready(function($) {
var timelineAnimate;
timelineAnimate = function(elem) {
return jQuery(".su-timeline.animated .su-timeline-row").each(function(i) {
var bottom_of_object, bottom_of_window;
bottom_of_object = jQuery(this).position().top + jQuery(this).outerHeight();
bottom_of_window = jQuery(window).scrollTop() + jQuery(window).height();
if (bottom_of_window > bottom_of_object) {
return jQuery(this).addClass("active");
}
});
};
timelineAnimate();
return jQuery(window).scroll(function() {
return timelineAnimate();
});
});