FlexSlider affected -


when use 2 flexslider instance manual control of second flexslider affect first slider

enter code here this.contenttabs.each((index: number, element: element) => {             var slider: jquery = $(element);             $('.flexslider', element).flexslider({                 animation: "fade",                 overflow: "hidden",                     slideshow: false,                     smoothheight: true,                     directionnav: false,                     selector: '.content > .panel',                     controlscontainer: ".flexslider",                     manualcontrols: " .tabs >.tab",                 }) 

;

are both sliders using same class? makes sense controls react both sliders. if want them not interfere each other use different class each individual slider. (".flexslider1", ".flexslider2" example.)


Comments

Popular posts from this blog

methods - python can't use function in submodule -

c# - DataValidation using Regex not working -

c++ - Map a range of values to a single value -