Fixed #264 - Carousel - Button inside carousel-item is not clickable in mobile phones
parent
2aa2f1fd26
commit
56fae39ec6
|
@ -106,7 +106,8 @@ export default {
|
|||
d_page: this.page,
|
||||
totalShiftedItems: this.page * this.numScroll * -1,
|
||||
allowAutoplay : !!this.autoplayInterval,
|
||||
d_circular : this.circular || this.allowAutoplay
|
||||
d_circular : this.circular || this.allowAutoplay,
|
||||
swipeThreshold: 20
|
||||
}
|
||||
},
|
||||
isRemainingItemsAdded: false,
|
||||
|
@ -281,12 +282,14 @@ export default {
|
|||
}
|
||||
},
|
||||
changePageOnTouch(e, diff) {
|
||||
if (Math.abs(diff) > this.swipeThreshold) {
|
||||
if (diff < 0) { // left
|
||||
this.navForward(e);
|
||||
}
|
||||
else { // right
|
||||
this.navBackward(e);
|
||||
}
|
||||
}
|
||||
},
|
||||
bindDocumentListeners() {
|
||||
if (!this.documentResizeListener) {
|
||||
|
|
Loading…
Reference in New Issue