The variable numberOfSlides seems to be never declared. Assigning variables without defining them first makes them global. If this was intended, consider making it explicit like using window.numberOfSlides.
Loading history...
44
createCarouselTestimonial(numberOfSlides);
45
}
46
47
// Call updateMaxHeight when browser resize event fires
The variable numberOfSlides seems to be never declared. Assigning variables without defining them first makes them global. If this was intended, consider making it explicit like using window.numberOfSlides.