Hi,
How do i initiate flexslider with extra arguments for element with class fslider.
Without functions.js i could do this
jQuery('#fslider').flexslider({
selector: ".slider-wrap > .slide",
animation: "slide",
animationLoop: false,
slideshow: false,
controlNav: "thumbnails",
start: function(slider){
jQuery('.flex-prev').html('<i class="icon-angle-left"></i>').addClass('small');
jQuery('.flex-next').html('<i class="icon-angle-right"></i>');
},
after: function(slider){
console.log(slider.currentSlide);
},
});
But as what i experience, the functions.js will also initiate another flexslider object
Thanks
