GX-Bug #49529 » fix.patch
| src/templates/Honeygrid/javascript/engine/widgets/swiper.js (revision ) | ||
|---|---|---|
| 215 | 215 |
// Try to correct the index between sliders |
| 216 | 216 |
// with and without duplicates |
| 217 | 217 |
var index = duplicates ? d + 1 : d; |
| 218 |
if (index > $slides.length - 1) {
|
|
| 218 |
if (index > $slides.length) {
|
|
| 219 | 219 |
index = 0; |
| 220 | 220 |
} |
| 221 | 221 | |