(element, config)
| 613 | /*#__PURE__*/ |
| 614 | function () { |
| 615 | function Carousel(element, config) { |
| 616 | this._items = null; |
| 617 | this._interval = null; |
| 618 | this._activeElement = null; |
| 619 | this._isPaused = false; |
| 620 | this._isSliding = false; |
| 621 | this.touchTimeout = null; |
| 622 | this._config = this._getConfig(config); |
| 623 | this._element = $$$1(element)[0]; |
| 624 | this._indicatorsElement = $$$1(this._element).find(Selector.INDICATORS)[0]; |
| 625 | |
| 626 | this._addEventListeners(); |
| 627 | } // Getters |
| 628 | |
| 629 | |
| 630 | var _proto = Carousel.prototype; |