File: /var/www/clients/client1/web78/web/wp-content/themes/bfastmag/assets/js/bfastmag.single.js
jQuery(document).ready(function() {
/**
* Related posts Slider
**/
jQuery('.owl-carousel.bfastmag-related-posts').owlCarousel({
loop:true,
margin:15,
responsiveClass:true,
nav:true,
navText: ['<i class="fa fa-angle-left">', '<i class="fa fa-angle-right">'],
dots: false,
lazyLoad: true,
animateIn: true,
responsive:{
0: { items:1 },
480: { items:2 },
1200: { items:3 }
}
});
/**
* Show more categories for related posts
**/
jQuery('.related-show-on-click').click(function(){
jQuery('.bfastmag-cat-show-on-click').show();
jQuery(this).hide();
});
});