info@54
|
1 |
/* ========================================================================
|
info@54
|
2 |
* Bootstrap: tab.js v3.0.3
|
info@54
|
3 |
* http://getbootstrap.com/javascript/#tabs
|
info@54
|
4 |
* ========================================================================
|
info@54
|
5 |
* Copyright 2013 Twitter, Inc.
|
info@54
|
6 |
*
|
info@54
|
7 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
info@54
|
8 |
* you may not use this file except in compliance with the License.
|
info@54
|
9 |
* You may obtain a copy of the License at
|
info@54
|
10 |
*
|
info@54
|
11 |
* http://www.apache.org/licenses/LICENSE-2.0
|
info@54
|
12 |
*
|
info@54
|
13 |
* Unless required by applicable law or agreed to in writing, software
|
info@54
|
14 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
info@54
|
15 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
info@54
|
16 |
* See the License for the specific language governing permissions and
|
info@54
|
17 |
* limitations under the License.
|
info@54
|
18 |
* ======================================================================== */
|
info@54
|
19 |
|
info@54
|
20 |
|
info@54
|
21 |
+function ($) { "use strict";
|
info@54
|
22 |
|
info@54
|
23 |
// TAB CLASS DEFINITION
|
info@54
|
24 |
// ====================
|
info@54
|
25 |
|
info@54
|
26 |
var Tab = function (element) {
|
info@54
|
27 |
this.element = $(element)
|
info@54
|
28 |
}
|
info@54
|
29 |
|
info@54
|
30 |
Tab.prototype.show = function () {
|
info@54
|
31 |
var $this = this.element
|
info@54
|
32 |
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
info@54
|
33 |
var selector = $this.data('target')
|
info@54
|
34 |
|
info@54
|
35 |
if (!selector) {
|
info@54
|
36 |
selector = $this.attr('href')
|
info@54
|
37 |
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
info@54
|
38 |
}
|
info@54
|
39 |
|
info@54
|
40 |
if ($this.parent('li').hasClass('active')) return
|
info@54
|
41 |
|
info@54
|
42 |
var previous = $ul.find('.active:last a')[0]
|
info@54
|
43 |
var e = $.Event('show.bs.tab', {
|
info@54
|
44 |
relatedTarget: previous
|
info@54
|
45 |
})
|
info@54
|
46 |
|
info@54
|
47 |
$this.trigger(e)
|
info@54
|
48 |
|
info@54
|
49 |
if (e.isDefaultPrevented()) return
|
info@54
|
50 |
|
info@54
|
51 |
var $target = $(selector)
|
info@54
|
52 |
|
info@54
|
53 |
this.activate($this.parent('li'), $ul)
|
info@54
|
54 |
this.activate($target, $target.parent(), function () {
|
info@54
|
55 |
$this.trigger({
|
info@54
|
56 |
type: 'shown.bs.tab'
|
info@54
|
57 |
, relatedTarget: previous
|
info@54
|
58 |
})
|
info@54
|
59 |
})
|
info@54
|
60 |
}
|
info@54
|
61 |
|
info@54
|
62 |
Tab.prototype.activate = function (element, container, callback) {
|
info@54
|
63 |
var $active = container.find('> .active')
|
info@54
|
64 |
var transition = callback
|
info@54
|
65 |
&& $.support.transition
|
info@54
|
66 |
&& $active.hasClass('fade')
|
info@54
|
67 |
|
info@54
|
68 |
function next() {
|
info@54
|
69 |
$active
|
info@54
|
70 |
.removeClass('active')
|
info@54
|
71 |
.find('> .dropdown-menu > .active')
|
info@54
|
72 |
.removeClass('active')
|
info@54
|
73 |
|
info@54
|
74 |
element.addClass('active')
|
info@54
|
75 |
|
info@54
|
76 |
if (transition) {
|
info@54
|
77 |
element[0].offsetWidth // reflow for transition
|
info@54
|
78 |
element.addClass('in')
|
info@54
|
79 |
} else {
|
info@54
|
80 |
element.removeClass('fade')
|
info@54
|
81 |
}
|
info@54
|
82 |
|
info@54
|
83 |
if (element.parent('.dropdown-menu')) {
|
info@54
|
84 |
element.closest('li.dropdown').addClass('active')
|
info@54
|
85 |
}
|
info@54
|
86 |
|
info@54
|
87 |
callback && callback()
|
info@54
|
88 |
}
|
info@54
|
89 |
|
info@54
|
90 |
transition ?
|
info@54
|
91 |
$active
|
info@54
|
92 |
.one($.support.transition.end, next)
|
info@54
|
93 |
.emulateTransitionEnd(150) :
|
info@54
|
94 |
next()
|
info@54
|
95 |
|
info@54
|
96 |
$active.removeClass('in')
|
info@54
|
97 |
}
|
info@54
|
98 |
|
info@54
|
99 |
|
info@54
|
100 |
// TAB PLUGIN DEFINITION
|
info@54
|
101 |
// =====================
|
info@54
|
102 |
|
info@54
|
103 |
var old = $.fn.tab
|
info@54
|
104 |
|
info@54
|
105 |
$.fn.tab = function ( option ) {
|
info@54
|
106 |
return this.each(function () {
|
info@54
|
107 |
var $this = $(this)
|
info@54
|
108 |
var data = $this.data('bs.tab')
|
info@54
|
109 |
|
info@54
|
110 |
if (!data) $this.data('bs.tab', (data = new Tab(this)))
|
info@54
|
111 |
if (typeof option == 'string') data[option]()
|
info@54
|
112 |
})
|
info@54
|
113 |
}
|
info@54
|
114 |
|
info@54
|
115 |
$.fn.tab.Constructor = Tab
|
info@54
|
116 |
|
info@54
|
117 |
|
info@54
|
118 |
// TAB NO CONFLICT
|
info@54
|
119 |
// ===============
|
info@54
|
120 |
|
info@54
|
121 |
$.fn.tab.noConflict = function () {
|
info@54
|
122 |
$.fn.tab = old
|
info@54
|
123 |
return this
|
info@54
|
124 |
}
|
info@54
|
125 |
|
info@54
|
126 |
|
info@54
|
127 |
// TAB DATA-API
|
info@54
|
128 |
// ============
|
info@54
|
129 |
|
info@54
|
130 |
$(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
info@54
|
131 |
e.preventDefault()
|
info@54
|
132 |
$(this).tab('show')
|
info@54
|
133 |
})
|
info@54
|
134 |
|
info@54
|
135 |
}(jQuery);
|