/*! * bootstrap v3.1.1 (#) * copyright 2011-2014 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) */ if (typeof jquery === 'undefined') { throw new error('bootstrap\'s javascript requires jquery') } /* ======================================================================== * bootstrap: transition.js v3.1.1 * #/javascript/#transitions * ======================================================================== * copyright 2011-2014 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, $el = this $(this).one($.support.transition.end, function () { called = true }) var callback = function () { if (!called) $($el).trigger($.support.transition.end) } settimeout(callback, duration) return this } $(function () { $.support.transition = transitionend() }) }(jquery); /* ======================================================================== * bootstrap: alert.js v3.1.1 * #/javascript/#alerts * ======================================================================== * copyright 2011-2014 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // alert class definition // ====================== var dismiss = '[data-dismiss="alert"]' var alert = function (el) { $(el).on('click', dismiss, this.close) } alert.prototype.close = function (e) { var $this = $(this) var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = $(selector) if (e) e.preventdefault() if (!$parent.length) { $parent = $this.hasclass('alert') ? $this : $this.parent() } $parent.trigger(e = $.event('close.bs.alert')) if (e.isdefaultprevented()) return $parent.removeclass('in') function removeelement() { $parent.trigger('closed.bs.alert').remove() } $.support.transition && $parent.hasclass('fade') ? $parent .one($.support.transition.end, removeelement) .emulatetransitionend(150) : removeelement() } // alert plugin definition // ======================= var old = $.fn.alert $.fn.alert = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.alert') if (!data) $this.data('bs.alert', (data = new alert(this))) if (typeof option == 'string') data[option].call($this) }) } $.fn.alert.constructor = alert // alert no conflict // ================= $.fn.alert.noconflict = function () { $.fn.alert = old return this } // alert data-api // ============== $(document).on('click.bs.alert.data-api', dismiss, alert.prototype.close) }(jquery); /* ======================================================================== * bootstrap: button.js v3.1.1 * #/javascript/#buttons * ======================================================================== * copyright 2011-2014 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // button public class definition // ============================== var button = function (element, options) { this.$element = $(element) this.options = $.extend({}, button.defaults, options) this.isloading = false } button.defaults = { loadingtext: 'loading...' } button.prototype.setstate = function (state) { var d = 'disabled' var $el = this.$element var val = $el.is('input') ? 'val' : 'html' var data = $el.data() state = state + 'text' if (!data.resettext) $el.data('resettext', $el[val]()) $el[val](data[state] || this.options[state]) // push to event loop to allow forms to submit settimeout($.proxy(function () { if (state == 'loadingtext') { this.isloading = true $el.addclass(d).attr(d, d) } else if (this.isloading) { this.isloading = false $el.removeclass(d).removeattr(d) } }, this), 0) } button.prototype.toggle = function () { var changed = true var $parent = this.$element.closest('[data-toggle="buttons"]') if ($parent.length) { var $input = this.$element.find('input') if ($input.prop('type') == 'radio') { if ($input.prop('checked') && this.$element.hasclass('active')) changed = false else $parent.find('.active').removeclass('active') } if (changed) $input.prop('checked', !this.$element.hasclass('active')).trigger('change') } if (changed) this.$element.toggleclass('active') } // button plugin definition // ======================== var old = $.fn.button $.fn.button = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.button') var options = typeof option == 'object' && option if (!data) $this.data('bs.button', (data = new button(this, options))) if (option == 'toggle') data.toggle() else if (option) data.setstate(option) }) } $.fn.button.constructor = button // button no conflict // ================== $.fn.button.noconflict = function () { $.fn.button = old return this } // button data-api // =============== $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) { var $btn = $(e.target) if (!$btn.hasclass('btn')) $btn = $btn.closest('.btn') $btn.button('toggle') e.preventdefault() }) }(jquery); /* ======================================================================== * bootstrap: carousel.js v3.1.1 * #/javascript/#carousel * ======================================================================== * copyright 2011-2014 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 = this.sliding = this.interval = this.$active = this.$items = null this.options.pause == 'hover' && this.$element .on('mouseenter', $.proxy(this.pause, this)) .on('mouseleave', $.proxy(this.cycle, this)) } carousel.defaults = { interval: 5000, pause: 'hover', wrap: true } 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.getactiveindex = function () { this.$active = this.$element.find('.item.active') this.$items = this.$active.parent().children() return this.$items.index(this.$active) } carousel.prototype.to = function (pos) { var that = this var activeindex = this.getactiveindex() if (pos > (this.$items.length - 1) || pos < 0) return if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) if (activeindex == pos) return this.pause().cycle() return this.slide(pos > activeindex ? 'next' : 'prev', $(this.$items[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 || $active[type]() var iscycling = this.interval var direction = type == 'next' ? 'left' : 'right' var fallback = type == 'next' ? 'first' : 'last' var that = this if (!$next.length) { if (!this.options.wrap) return $next = this.$element.find('.item')[fallback]() } if ($next.hasclass('active')) return this.sliding = false var e = $.event('slide.bs.carousel', { relatedtarget: $next[0], direction: direction }) this.$element.trigger(e) if (e.isdefaultprevented()) return this.sliding = true iscycling && this.pause() if (this.$indicators.length) { this.$indicators.find('.active').removeclass('active') this.$element.one('slid.bs.carousel', function () { var $nextindicator = $(that.$indicators.children()[that.getactiveindex()]) $nextindicator && $nextindicator.addclass('active') }) } if ($.support.transition && this.$element.hasclass('slide')) { $next.addclass(type) $next[0].offsetwidth // force reflow $active.addclass(direction) $next.addclass(direction) $active .one($.support.transition.end, function () { $next.removeclass([type, direction].join(' ')).addclass('active') $active.removeclass(['active', direction].join(' ')) that.sliding = false settimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0) }) .emulatetransitionend($active.css('transition-duration').slice(0, -1) * 1000) } else { $active.removeclass('active') $next.addclass('active') this.sliding = false this.$element.trigger('slid.bs.carousel') } iscycling && this.cycle() return this } // carousel plugin definition // ========================== var old = $.fn.carousel $.fn.carousel = function (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() }) } $.fn.carousel.constructor = carousel // carousel no conflict // ==================== $.fn.carousel.noconflict = function () { $.fn.carousel = old return this } // carousel data-api // ================= $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { var $this = $(this), href var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 var options = $.extend({}, $target.data(), $this.data()) var slideindex = $this.attr('data-slide-to') if (slideindex) options.interval = false $target.carousel(options) if (slideindex = $this.attr('data-slide-to')) { $target.data('bs.carousel').to(slideindex) } e.preventdefault() }) $(window).on('load', function () { $('[data-ride="carousel"]').each(function () { var $carousel = $(this) $carousel.carousel($carousel.data()) }) }) }(jquery); /* ======================================================================== * bootstrap: collapse.js v3.1.1 * #/javascript/#collapse * ======================================================================== * copyright 2011-2014 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // collapse public class definition // ================================ var collapse = function (element, options) { this.$element = $(element) this.options = $.extend({}, collapse.defaults, options) this.transitioning = null if (this.options.parent) this.$parent = $(this.options.parent) if (this.options.toggle) this.toggle() } collapse.defaults = { toggle: true } collapse.prototype.dimension = function () { var haswidth = this.$element.hasclass('width') return haswidth ? 'width' : 'height' } collapse.prototype.show = function () { if (this.transitioning || this.$element.hasclass('in')) return var startevent = $.event('show.bs.collapse') this.$element.trigger(startevent) if (startevent.isdefaultprevented()) return var actives = this.$parent && this.$parent.find('> .panel > .in') if (actives && actives.length) { var hasdata = actives.data('bs.collapse') if (hasdata && hasdata.transitioning) return actives.collapse('hide') hasdata || actives.data('bs.collapse', null) } var dimension = this.dimension() this.$element .removeclass('collapse') .addclass('collapsing') [dimension](0) this.transitioning = 1 var complete = function () { this.$element .removeclass('collapsing') .addclass('collapse in') [dimension]('auto') this.transitioning = 0 this.$element.trigger('shown.bs.collapse') } if (!$.support.transition) return complete.call(this) var scrollsize = $.camelcase(['scroll', dimension].join('-')) this.$element .one($.support.transition.end, $.proxy(complete, this)) .emulatetransitionend(350) [dimension](this.$element[0][scrollsize]) } collapse.prototype.hide = function () { if (this.transitioning || !this.$element.hasclass('in')) return var startevent = $.event('hide.bs.collapse') this.$element.trigger(startevent) if (startevent.isdefaultprevented()) return var dimension = this.dimension() this.$element [dimension](this.$element[dimension]()) [0].offsetheight this.$element .addclass('collapsing') .removeclass('collapse') .removeclass('in') this.transitioning = 1 var complete = function () { this.transitioning = 0 this.$element .trigger('hidden.bs.collapse') .removeclass('collapsing') .addclass('collapse') } if (!$.support.transition) return complete.call(this) this.$element [dimension](0) .one($.support.transition.end, $.proxy(complete, this)) .emulatetransitionend(350) } collapse.prototype.toggle = function () { this[this.$element.hasclass('in') ? 'hide' : 'show']() } // collapse plugin definition // ========================== var old = $.fn.collapse $.fn.collapse = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.collapse') var options = $.extend({}, collapse.defaults, $this.data(), typeof option == 'object' && option) if (!data && options.toggle && option == 'show') option = !option if (!data) $this.data('bs.collapse', (data = new collapse(this, options))) if (typeof option == 'string') data[option]() }) } $.fn.collapse.constructor = collapse // collapse no conflict // ==================== $.fn.collapse.noconflict = function () { $.fn.collapse = old return this } // collapse data-api // ================= $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) { var $this = $(this), href var target = $this.attr('data-target') || e.preventdefault() || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 var $target = $(target) var data = $target.data('bs.collapse') var option = data ? 'toggle' : $this.data() var parent = $this.attr('data-parent') var $parent = parent && $(parent) if (!data || !data.transitioning) { if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addclass('collapsed') $this[$target.hasclass('in') ? 'addclass' : 'removeclass']('collapsed') } $target.collapse(option) }) }(jquery); /* ======================================================================== * bootstrap: dropdown.js v3.1.1 * #/javascript/#dropdowns * ======================================================================== * copyright 2011-2014 twitter, inc. * licensed under mit (https://github.com/twbs/bootstrap/blob/master/license) * ======================================================================== */ +function ($) { 'use strict'; // dropdown class definition // ========================= var backdrop = '.dropdown-backdrop' var toggle = '[data-toggle=dropdown]' var dropdown = function (element) { $(element).on('click.bs.dropdown', this.toggle) } dropdown.prototype.toggle = function (e) { var $this = $(this) if ($this.is('.disabled, :disabled')) return var $parent = getparent($this) var isactive = $parent.hasclass('open') clearmenus() if (!isactive) { if ('ontouchstart' in document.documentelement && !$parent.closest('.navbar-nav').length) { // if mobile we use a backdrop because click events don't delegate $('