swiper
Version:
Most modern mobile touch slider and framework with hardware accelerated transitions
17 lines (13 loc) • 344 B
JavaScript
exports.__esModule = true;
exports.default = onClick;
function onClick(e) {
var swiper = this;
if (!swiper.allowClick) {
if (swiper.params.preventClicks) e.preventDefault();
if (swiper.params.preventClicksPropagation && swiper.animating) {
e.stopPropagation();
e.stopImmediatePropagation();
}
}
}
;