twbs--bootstrap/js/tab.js

126 lines
2.9 KiB
JavaScript
Raw Normal View History

2013-05-22 02:30:33 +00:00
/* ========================================================================
2014-01-30 16:30:37 +00:00
* Bootstrap: tab.js v3.1.0
* http://getbootstrap.com/javascript/#tabs
2013-05-22 02:30:33 +00:00
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2013-05-22 02:30:33 +00:00
* ======================================================================== */
2014-01-01 14:42:41 +00:00
+function ($) {
'use strict';
2013-05-17 00:18:15 +00:00
// TAB CLASS DEFINITION
// ====================
2012-07-23 01:28:39 +00:00
var Tab = function (element) {
this.element = $(element)
}
2013-05-17 00:18:15 +00:00
Tab.prototype.show = function () {
var $this = this.element
var $ul = $this.closest('ul:not(.dropdown-menu)')
var selector = $this.data('target')
2013-05-17 00:18:15 +00:00
if (!selector) {
selector = $this.attr('href')
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
}
2013-05-17 00:18:15 +00:00
if ($this.parent('li').hasClass('active')) return
2013-05-17 00:18:15 +00:00
var previous = $ul.find('.active:last a')[0]
var e = $.Event('show.bs.tab', {
2013-05-17 00:18:15 +00:00
relatedTarget: previous
})
2013-05-17 00:18:15 +00:00
$this.trigger(e)
2013-05-17 00:18:15 +00:00
if (e.isDefaultPrevented()) return
2013-05-17 00:18:15 +00:00
var $target = $(selector)
2013-05-17 00:18:15 +00:00
this.activate($this.parent('li'), $ul)
this.activate($target, $target.parent(), function () {
$this.trigger({
2013-12-15 19:04:32 +00:00
type: 'shown.bs.tab',
relatedTarget: previous
})
2013-05-17 00:18:15 +00:00
})
}
2013-05-17 00:18:15 +00:00
Tab.prototype.activate = function (element, container, callback) {
var $active = container.find('> .active')
var transition = callback
&& $.support.transition
&& $active.hasClass('fade')
function next() {
$active
.removeClass('active')
.find('> .dropdown-menu > .active')
.removeClass('active')
element.addClass('active')
if (transition) {
element[0].offsetWidth // reflow for transition
element.addClass('in')
} else {
element.removeClass('fade')
}
2013-05-17 00:18:15 +00:00
if (element.parent('.dropdown-menu')) {
element.closest('li.dropdown').addClass('active')
}
2013-05-17 00:18:15 +00:00
callback && callback()
}
2013-05-17 00:18:15 +00:00
transition ?
$active
.one($.support.transition.end, next)
.emulateTransitionEnd(150) :
2013-05-17 00:18:15 +00:00
next()
$active.removeClass('in')
}
2013-05-17 00:18:15 +00:00
// TAB PLUGIN DEFINITION
// =====================
var old = $.fn.tab
$.fn.tab = function ( option ) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.tab')
2013-05-17 00:18:15 +00:00
if (!data) $this.data('bs.tab', (data = new Tab(this)))
if (typeof option == 'string') data[option]()
})
}
$.fn.tab.Constructor = Tab
2013-05-17 00:18:15 +00:00
// TAB NO CONFLICT
// ===============
$.fn.tab.noConflict = function () {
$.fn.tab = old
return this
}
2013-05-17 00:18:15 +00:00
// TAB DATA-API
// ============
$(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
e.preventDefault()
$(this).tab('show')
})
}(jQuery);