Update script.js
This commit is contained in:
parent
0ac58add26
commit
36f5f48a47
1 changed files with 3 additions and 1 deletions
|
|
@ -18806,7 +18806,9 @@ function setupBeatportRebuildSliderIndicators() {
|
|||
const indicators = document.querySelectorAll('.beatport-rebuild-indicator');
|
||||
|
||||
indicators.forEach((indicator, index) => {
|
||||
indicator.addEventListener('click', () => {
|
||||
indicator.addEventListener('click', (e) => {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
goToBeatportRebuildSlide(index);
|
||||
resetBeatportRebuildSliderAutoPlay();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue