2011-11-25 20:23:14 -05:00
|
|
|
/* =============================================================
|
2013-05-16 14:06:30 -04:00
|
|
|
* Bootstrap: collapse.js v3.0.0
|
2012-01-24 14:08:03 -05:00
|
|
|
* http://twitter.github.com/bootstrap/javascript.html#collapse
|
2011-11-25 20:23:14 -05:00
|
|
|
* =============================================================
|
2012-01-15 02:28:48 -05:00
|
|
|
* Copyright 2012 Twitter, Inc.
|
2011-11-25 20:23:14 -05:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
* ============================================================ */
|
|
|
|
|
2012-03-24 21:59:04 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
!function ($) { "use strict";
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
// COLLAPSE PUBLIC CLASS DEFINITION
|
|
|
|
// ================================
|
2012-04-14 19:29:53 -04:00
|
|
|
|
|
|
|
var Collapse = function (element, options) {
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element = $(element)
|
|
|
|
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
|
|
|
this.transitioning = null
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
if (this.options.parent) this.$parent = $(this.options.parent)
|
|
|
|
if (this.options.toggle) this.toggle()
|
|
|
|
}
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.DEFAULTS = {
|
|
|
|
toggle: true
|
2011-11-25 20:23:14 -05:00
|
|
|
}
|
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.prototype.dimension = function () {
|
|
|
|
var hasWidth = this.$element.hasClass('width')
|
|
|
|
return hasWidth ? 'width' : 'height'
|
|
|
|
}
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.prototype.show = function () {
|
|
|
|
if (this.transitioning || this.$element.hasClass('in')) return
|
2011-12-01 01:42:22 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
var dimension = this.dimension()
|
|
|
|
var scroll = $.camelCase(['scroll', dimension].join('-'))
|
|
|
|
var actives = this.$parent && this.$parent.find('> .accordion-group > .in')
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
if (actives && actives.length) {
|
|
|
|
var hasData = actives.data('collapse')
|
|
|
|
if (hasData && hasData.transitioning) return
|
|
|
|
actives.collapse('hide')
|
|
|
|
hasData || actives.data('collapse', null)
|
|
|
|
}
|
2012-03-21 01:43:27 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element[dimension](0)
|
2013-05-16 23:19:51 -04:00
|
|
|
this.transition('addClass', $.Event('show.bs.collapse'), 'shown.bs.collapse')
|
2012-03-21 01:43:27 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
if ($.support.transition) this.$element[dimension](this.$element[0][scroll])
|
|
|
|
}
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.prototype.hide = function () {
|
|
|
|
if (this.transitioning || !this.$element.hasClass('in')) return
|
|
|
|
var dimension = this.dimension()
|
|
|
|
this.reset(this.$element[dimension]())
|
2013-05-16 23:19:51 -04:00
|
|
|
this.transition('removeClass', $.Event('hide.bs.collapse'), 'hidden')
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element[dimension](0)
|
|
|
|
}
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.prototype.reset = function (size) {
|
|
|
|
var dimension = this.dimension()
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element
|
|
|
|
.removeClass('collapse')
|
|
|
|
[dimension](size || 'auto')
|
|
|
|
[0].offsetWidth
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element[size !== null ? 'addClass' : 'removeClass']('collapse')
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
return this
|
|
|
|
}
|
2012-03-12 16:37:44 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.prototype.transition = function (method, startEvent, completeEvent) {
|
|
|
|
var that = this
|
|
|
|
var complete = function () {
|
2013-05-16 23:19:51 -04:00
|
|
|
if (startEvent.type == 'show') that.reset()
|
2013-05-16 14:20:18 -04:00
|
|
|
that.transitioning = 0
|
|
|
|
that.$element.trigger(completeEvent)
|
2011-11-25 20:23:14 -05:00
|
|
|
}
|
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element.trigger(startEvent)
|
2012-03-24 21:20:09 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
if (startEvent.isDefaultPrevented()) return
|
2012-03-24 21:20:09 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
this.transitioning = 1
|
2012-03-21 01:43:27 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
this.$element[method]('in')
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
$.support.transition && this.$element.hasClass('collapse') ?
|
|
|
|
this.$element.one($.support.transition.end, complete) :
|
|
|
|
complete()
|
|
|
|
}
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
Collapse.prototype.toggle = function () {
|
|
|
|
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
2011-11-25 20:23:14 -05:00
|
|
|
}
|
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
// COLLAPSE PLUGIN DEFINITION
|
|
|
|
// ==========================
|
2012-12-07 17:06:01 -05:00
|
|
|
|
|
|
|
var old = $.fn.collapse
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
$.fn.collapse = function (option) {
|
2011-11-25 20:23:14 -05:00
|
|
|
return this.each(function () {
|
2013-05-16 14:20:18 -04:00
|
|
|
var $this = $(this)
|
|
|
|
var data = $this.data('collapse')
|
|
|
|
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
|
|
|
|
2011-11-25 20:23:14 -05:00
|
|
|
if (!data) $this.data('collapse', (data = new Collapse(this, options)))
|
|
|
|
if (typeof option == 'string') data[option]()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2011-12-21 02:28:48 -05:00
|
|
|
$.fn.collapse.Constructor = Collapse
|
2011-11-25 20:23:14 -05:00
|
|
|
|
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
// COLLAPSE NO CONFLICT
|
|
|
|
// ====================
|
2011-11-25 20:23:14 -05:00
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
$.fn.collapse.noConflict = function () {
|
|
|
|
$.fn.collapse = old
|
|
|
|
return this
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-16 14:20:18 -04:00
|
|
|
// COLLAPSE DATA-API
|
|
|
|
// =================
|
2012-12-07 17:06:01 -05:00
|
|
|
|
2012-09-27 18:00:02 -04:00
|
|
|
$(document).on('click.collapse.data-api', '[data-toggle=collapse]', function (e) {
|
2013-05-16 14:20:18 -04:00
|
|
|
var $this = $(this), href
|
|
|
|
var target = $this.attr('data-target')
|
2012-09-27 18:00:02 -04:00
|
|
|
|| e.preventDefault()
|
|
|
|
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
|
2013-05-16 14:20:18 -04:00
|
|
|
var option = $(target).data('collapse') ? 'toggle' : $this.data()
|
|
|
|
|
2012-09-27 18:00:02 -04:00
|
|
|
$this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
|
|
|
|
$(target).collapse(option)
|
2011-11-25 20:23:14 -05:00
|
|
|
})
|
|
|
|
|
2013-04-23 03:34:27 -04:00
|
|
|
}(window.jQuery);
|