mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-06 14:20:58 +00:00
carousel: move common checks to a function (#34621)
This commit is contained in:
parent
2034ead87f
commit
418fe8113e
1 changed files with 7 additions and 2 deletions
|
|
@ -260,8 +260,13 @@ class Carousel extends BaseComponent {
|
|||
}
|
||||
|
||||
_addTouchEventListeners() {
|
||||
const hasPointerPenTouch = event => {
|
||||
return this._pointerEvent &&
|
||||
(event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH)
|
||||
}
|
||||
|
||||
const start = event => {
|
||||
if (this._pointerEvent && (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH)) {
|
||||
if (hasPointerPenTouch(event)) {
|
||||
this.touchStartX = event.clientX
|
||||
} else if (!this._pointerEvent) {
|
||||
this.touchStartX = event.touches[0].clientX
|
||||
|
|
@ -276,7 +281,7 @@ class Carousel extends BaseComponent {
|
|||
}
|
||||
|
||||
const end = event => {
|
||||
if (this._pointerEvent && (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH)) {
|
||||
if (hasPointerPenTouch(event)) {
|
||||
this.touchDeltaX = event.clientX - this.touchStartX
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue