(slider)
| 1810 | |
| 1811 | var Swipe = function () { |
| 1812 | function Swipe(slider) { |
| 1813 | _classCallCheck(this, Swipe); |
| 1814 | |
| 1815 | this.slider = slider; |
| 1816 | |
| 1817 | this._supportsPassive = Object(__WEBPACK_IMPORTED_MODULE_1__utils_detect_supportsPassive__["a" /* default */])(); |
| 1818 | |
| 1819 | this.onStartDrag = this.onStartDrag.bind(this); |
| 1820 | this.onMoveDrag = this.onMoveDrag.bind(this); |
| 1821 | this.onStopDrag = this.onStopDrag.bind(this); |
| 1822 | |
| 1823 | this._init(); |
| 1824 | } |
| 1825 | |
| 1826 | _createClass(Swipe, [{ |
| 1827 | key: '_init', |
nothing calls this directly
no test coverage detected