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