}\n \t\t */\n \t\tthis._templates = [];\n\n \t\t/**\n \t\t * The carousel element.\n \t\t * @type {jQuery}\n \t\t */\n \t\tthis.$element = this._core.$element;\n\n \t\t/**\n \t\t * Overridden methods of the carousel.\n \t\t * @protected\n \t\t * @type {Object}\n \t\t */\n \t\tthis._overrides = {\n \t\t\tnext: this._core.next,\n \t\t\tprev: this._core.prev,\n \t\t\tto: this._core.to\n \t\t};\n\n \t\t/**\n \t\t * All event handlers.\n \t\t * @protected\n \t\t * @type {Object}\n \t\t */\n \t\tthis._handlers = {\n \t\t\t'prepared.owl.carousel': $.proxy(function(e) {\n \t\t\t\tif (e.namespace && this._core.settings.dotsData) {\n \t\t\t\t\tthis._templates.push('' +\n \t\t\t\t\t\t$(e.content).find('[data-dot]').addBack('[data-dot]').attr('data-dot') + '
');\n \t\t\t\t}\n \t\t\t}, this),\n \t\t\t'added.owl.carousel': $.proxy(function(e) {\n \t\t\t\tif (e.namespace && this._core.settings.dotsData) {\n \t\t\t\t\tthis._templates.splice(e.position, 0, this._templates.pop());\n \t\t\t\t}\n \t\t\t}, this),\n \t\t\t'remove.owl.carousel': $.proxy(function(e) {\n \t\t\t\tif (e.namespace && this._core.settings.dotsData) {\n \t\t\t\t\tthis._templates.splice(e.position, 1);\n \t\t\t\t}\n \t\t\t}, this),\n \t\t\t'changed.owl.carousel': $.proxy(function(e) {\n \t\t\t\tif (e.namespace && e.property.name == 'position') {\n \t\t\t\t\tthis.draw();\n \t\t\t\t}\n \t\t\t}, this),\n \t\t\t'initialized.owl.carousel': $.proxy(function(e) {\n \t\t\t\tif (e.namespace && !this._initialized) {\n \t\t\t\t\tthis._core.trigger('initialize', null, 'navigation');\n \t\t\t\t\tthis.initialize();\n \t\t\t\t\tthis.update();\n \t\t\t\t\tthis.draw();\n \t\t\t\t\tthis._initialized = true;\n \t\t\t\t\tthis._core.trigger('initialized', null, 'navigation');\n \t\t\t\t}\n \t\t\t}, this),\n \t\t\t'refreshed.owl.carousel': $.proxy(function(e) {\n \t\t\t\tif (e.namespace && this._initialized) {\n \t\t\t\t\tthis._core.trigger('refresh', null, 'navigation');\n \t\t\t\t\tthis.update();\n \t\t\t\t\tthis.draw();\n \t\t\t\t\tthis._core.trigger('refreshed', null, 'navigation');\n \t\t\t\t}\n \t\t\t}, this)\n \t\t};\n\n \t\t// set default options\n \t\tthis._core.options = $.extend({}, Navigation.Defaults, this._core.options);\n\n \t\t// register event handlers\n \t\tthis.$element.on(this._handlers);\n \t};\n\n \t/**\n \t * Default options.\n \t * @public\n \t * @todo Rename `slideBy` to `navBy`\n \t */\n \tNavigation.Defaults = {\n \t\tnav: false,\n \t\tnavText: [\n \t\t\t'‹',\n \t\t\t'›'\n \t\t],\n \t\tnavSpeed: false,\n \t\tnavElement: 'button type=\"button\" role=\"presentation\"',\n \t\tnavContainer: false,\n \t\tnavContainerClass: 'owl-nav',\n \t\tnavClass: [\n \t\t\t'owl-prev',\n \t\t\t'owl-next'\n \t\t],\n \t\tslideBy: 1,\n \t\tdotClass: 'owl-dot',\n \t\tdotsClass: 'owl-dots',\n \t\tdots: true,\n \t\tdotsEach: false,\n \t\tdotsData: false,\n \t\tdotsSpeed: false,\n \t\tdotsContainer: false\n \t};\n\n \t/**\n \t * Initializes the layout of the plugin and extends the carousel.\n \t * @protected\n \t */\n \tNavigation.prototype.initialize = function() {\n \t\tvar override,\n \t\t\tsettings = this._core.settings;\n\n \t\t// create DOM structure for relative navigation\n \t\tthis._controls.$relative = (settings.navContainer ? $(settings.navContainer)\n \t\t\t: $('').addClass(settings.navContainerClass).appendTo(this.$element)).addClass('disabled');\n\n \t\tthis._controls.$previous = $('<' + settings.navElement + '>')\n \t\t\t.addClass(settings.navClass[0])\n \t\t\t.html(settings.navText[0])\n \t\t\t.prependTo(this._controls.$relative)\n \t\t\t.on('click', $.proxy(function(e) {\n \t\t\t\tthis.prev(settings.navSpeed);\n \t\t\t}, this));\n \t\tthis._controls.$next = $('<' + settings.navElement + '>')\n \t\t\t.addClass(settings.navClass[1])\n \t\t\t.html(settings.navText[1])\n \t\t\t.appendTo(this._controls.$relative)\n \t\t\t.on('click', $.proxy(function(e) {\n \t\t\t\tthis.next(settings.navSpeed);\n \t\t\t}, this));\n\n \t\t// create DOM structure for absolute navigation\n \t\tif (!settings.dotsData) {\n \t\t\tthis._templates = [ $('