/*! * bootstrap v3.3.4 (http://getbootstrap.com) * copyright 2011-2015 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) */ /*! * generated using the bootstrap customizer () * config saved to config.json and */ if (typeof jquery === 'undefined') { throw new error('bootstrap\'s javascript requires jquery') } +function ($) { 'use strict'; var version = $.fn.jquery.split(' ')[0].split('.') if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) { throw new error('bootstrap\'s javascript requires jquery version 1.9.1 or higher') } }(jquery); /* ======================================================================== * bootstrap: carousel.js v3.3.2 * http://getbootstrap.com/javascript/#carousel * ======================================================================== * copyright 2011-2015 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // carousel class definition // ========================= var carousel = function (element, options) { this.$element = $(element) this.$indicators = this.$element.find('.carousel-indicators') this.options = options this.paused = null this.sliding = null this.interval = null this.$active = null this.$items = null this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) this.options.pause == 'hover' && !('ontouchstart' in document.documentelement) && this.$element .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) } carousel.version = '3.3.2' carousel.transition_duration = 600 carousel.defaults = { interval: 5000, pause: 'hover', wrap: true, keyboard: true } carousel.prototype.keydown = function (e) { if (/input|textarea/i.test(e.target.tagname)) return switch (e.which) { case 37: this.prev(); break case 39: this.next(); break default: return } e.preventdefault() } carousel.prototype.cycle = function (e) { e || (this.paused = false) this.interval && clearinterval(this.interval) this.options.interval && !this.paused && (this.interval = setinterval($.proxy(this.next, this), this.options.interval)) return this } carousel.prototype.getitemindex = function (item) { this.$items = item.parent().children('.item') return this.$items.index(item || this.$active) } carousel.prototype.getitemfordirection = function (direction, active) { var activeindex = this.getitemindex(active) var willwrap = (direction == 'prev' && activeindex === 0) || (direction == 'next' && activeindex == (this.$items.length - 1)) if (willwrap && !this.options.wrap) return active var delta = direction == 'prev' ? -1 : 1 var itemindex = (activeindex + delta) % this.$items.length return this.$items.eq(itemindex) } carousel.prototype.to = function (pos) { var that = this var activeindex = this.getitemindex(this.$active = this.$element.find('.item.active')) if (pos > (this.$items.length - 1) || pos < 0) return if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" if (activeindex == pos) return this.pause().cycle() return this.slide(pos > activeindex ? 'next' : 'prev', this.$items.eq(pos)) } carousel.prototype.pause = function (e) { e || (this.paused = true) if (this.$element.find('.next, .prev').length && $.support.transition) { this.$element.trigger($.support.transition.end) this.cycle(true) } this.interval = clearinterval(this.interval) return this } carousel.prototype.next = function () { if (this.sliding) return return this.slide('next') } carousel.prototype.prev = function () { if (this.sliding) return return this.slide('prev') } carousel.prototype.slide = function (type, next) { var $active = this.$element.find('.item.active') var $next = next || this.getitemfordirection(type, $active) var iscycling = this.interval var direction = type == 'next' ? 'left' : 'right' var that = this if ($next.hasclass('active')) return (this.sliding = false) var relatedtarget = $next[0] var slideevent = $.event('slide.bs.carousel', { relatedtarget: relatedtarget, direction: direction }) this.$element.trigger(slideevent) if (slideevent.isdefaultprevented()) return this.sliding = true iscycling && this.pause() if (this.$indicators.length) { this.$indicators.find('.active').removeclass('active') var $nextindicator = $(this.$indicators.children()[this.getitemindex($next)]) $nextindicator && $nextindicator.addclass('active') } var slidevent = $.event('slid.bs.carousel', { relatedtarget: relatedtarget, direction: direction }) // yes, "slid" if ($.support.transition && this.$element.hasclass('slide')) { $next.addclass(type) $next[0].offsetwidth // force reflow $active.addclass(direction) $next.addclass(direction) $active .one('bstransitionend', function () { $next.removeclass([type, direction].join(' ')).addclass('active') $active.removeclass(['active', direction].join(' ')) that.sliding = false settimeout(function () { that.$element.trigger(slidevent) }, 0) }) .emulatetransitionend(carousel.transition_duration) } else { $active.removeclass('active') $next.addclass('active') this.sliding = false this.$element.trigger(slidevent) } iscycling && this.cycle() return this } // carousel plugin definition // ========================== function plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.carousel') var options = $.extend({}, carousel.defaults, $this.data(), typeof option == 'object' && option) var action = typeof option == 'string' ? option : options.slide if (!data) $this.data('bs.carousel', (data = new carousel(this, options))) if (typeof option == 'number') data.to(option) else if (action) data[action]() else if (options.interval) data.pause().cycle() }) } var old = $.fn.carousel $.fn.carousel = plugin $.fn.carousel.constructor = carousel // carousel no conflict // ==================== $.fn.carousel.noconflict = function () { $.fn.carousel = old return this } // carousel data-api // ================= var clickhandler = function (e) { var href var $this = $(this) var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 if (!$target.hasclass('carousel')) return var options = $.extend({}, $target.data(), $this.data()) var slideindex = $this.attr('data-slide-to') if (slideindex) options.interval = false plugin.call($target, options) if (slideindex) { $target.data('bs.carousel').to(slideindex) } e.preventdefault() } $(document) .on('click.bs.carousel.data-api', '[data-slide]', clickhandler) .on('click.bs.carousel.data-api', '[data-slide-to]', clickhandler) $(window).on('load', function () { $('[data-ride="carousel"]').each(function () { var $carousel = $(this) plugin.call($carousel, $carousel.data()) }) }) }(jquery); /* ======================================================================== * bootstrap: transition.js v3.3.2 * http://getbootstrap.com/javascript/#transitions * ======================================================================== * copyright 2011-2015 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // css transition support (shoutout: http://www.modernizr.com/) // ============================================================ function transitionend() { var el = document.createelement('bootstrap') var transendeventnames = { webkittransition : 'webkittransitionend', moztransition : 'transitionend', otransition : 'otransitionend otransitionend', transition : 'transitionend' } for (var name in transendeventnames) { if (el.style[name] !== undefined) { return { end: transendeventnames[name] } } } return false // explicit for ie8 ( ._.) } // http://blog.alexmaccaw.com/css-transitions $.fn.emulatetransitionend = function (duration) { var called = false var $el = this $(this).one('bstransitionend', function () { called = true }) var callback = function () { if (!called) $($el).trigger($.support.transition.end) } settimeout(callback, duration) return this } $(function () { $.support.transition = transitionend() if (!$.support.transition) return $.event.special.bstransitionend = { bindtype: $.support.transition.end, delegatetype: $.support.transition.end, handle: function (e) { if ($(e.target).is(this)) return e.handleobj.handler.apply(this, arguments) } } }) }(jquery);