Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit ad0b2af

Browse files
author
Łukasz Florczak
committed
Fix space
1 parent 95b5972 commit ad0b2af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Agile.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@
504504
}
505505
506506
// To account for the combination of infinite = false and centerMode = true, ensure we don't overrun the bounds of the slide count.
507-
for (let i = Math.max(start, 0); i < Math.min(start + this.settings.slidesToShow, this.slidesCount) ; i++) {
507+
for (let i = Math.max(start, 0); i < Math.min(start + this.settings.slidesToShow, this.slidesCount); i++) {
508508
this.allSlides[i].classList.add('agile__slide--current')
509509
}
510510
},

0 commit comments

Comments
 (0)