1/**
2 * Owl Carousel v2.3.4
3 * Copyright 2013-2018 David Deutsch
4 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
5 */
6/**
7 * Owl carousel
8 * @version 2.3.4
9 * @author Bartosz Wojciechowski
10 * @author David Deutsch
11 * @license The MIT License (MIT)
12 * @todo Lazy Load Icon
13 * @todo prevent animationend bubling
14 * @todo itemsScaleUp
15 * @todo Test Zepto
16 * @todo stagePadding calculate wrong active classes
17 */
18 ;(function($, window, document, undefined) {
19
20 /**
21 * Creates a carousel.
22 * @class The Owl Carousel.
23 * @public
24 * @param {HTMLElement|jQuery} element - The element to create the carousel for.
25 * @param {Object} [options] - The options
26 */
27 function Owl(element, options) {
28
29 /**
30 * Current settings for the carousel.
31 * @public
32 */
33 this.settings = null;
34
35 /**
36 * Current options set by the caller including defaults.
37 * @public
38 */
39 this.options = $.extend({}, Owl.Defaults, options);
40
...
</html>