hi @manan123 ,
It seems there is a mouseover handler in the slideshow component. I inspected you’re store and found the handler. You can add a condition in the mouseover handler to ignore mouseover event type for pausing auto rotation. In you’re assets/global.js you can replace the handler function “focusInHandling” with the updated function below. It tells the browser to ignore mouseover events when checking to pause auto rotation. You need to replace the function code with the given function. contact us if you need anymore help with this.
focusInHandling(event) {
if (this.sliderAutoplayButton) {
const focusedOnAutoplayButton =
event.target === this.sliderAutoplayButton || this.sliderAutoplayButton.contains(event.target);
if (focusedOnAutoplayButton && this.autoplayButtonIsSetToPlay) {
this.play();
} else if (this.autoplayButtonIsSetToPlay) {
if(event.type !== "mouseover")
this.pause();
}
} else if (this.querySelector('.announcement-bar-slider').contains(event.target)) {
if(event.type !== "mouseover")
this.pause();
}
}