UNPKG

289 BJavaScriptView Raw
1export default function unsetGrabCursor() {
2 const swiper = this;
3
4 if (swiper.support.touch || swiper.params.watchOverflow && swiper.isLocked || swiper.params.cssMode) {
5 return;
6 }
7
8 swiper[swiper.params.touchEventsTarget === 'container' ? 'el' : 'wrapperEl'].style.cursor = '';
9}
\No newline at end of file