swiper
Version:
Most modern mobile touch slider and framework with hardware accelerated transitions
13 lines (11 loc) • 322 B
JavaScript
export default function onClick(e) {
const swiper = this;
if (!swiper.enabled) return;
if (!swiper.allowClick) {
if (swiper.params.preventClicks) e.preventDefault();
if (swiper.params.preventClicksPropagation && swiper.animating) {
e.stopPropagation();
e.stopImmediatePropagation();
}
}
}