Linux multi-monitor fullscreen support
[ryzomcore.git] / web / public_php / ams / js / bootstrap-tab.js
blobd87f35099aef8414b4e86055798f55be23508862
1 /* ========================================================
2  * bootstrap-tab.js v2.0.4
3  * http://twitter.github.com/bootstrap/javascript.html#tabs
4  * ========================================================
5  * Copyright 2012 Twitter, Inc.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ======================================================== */
21 !function ($) {
23   "use strict"; // jshint ;_;
26  /* TAB CLASS DEFINITION
27   * ==================== */
29   var Tab = function ( element ) {
30     this.element = $(element)
31   }
33   Tab.prototype = {
35     constructor: Tab
37   , show: function () {
38       var $this = this.element
39         , $ul = $this.closest('ul:not(.dropdown-menu)')
40         , selector = $this.attr('data-target')
41         , previous
42         , $target
43         , e
45       if (!selector) {
46         selector = $this.attr('href')
47         selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
48       }
50       if ( $this.parent('li').hasClass('active') ) return
52       previous = $ul.find('.active a').last()[0]
54       e = $.Event('show', {
55         relatedTarget: previous
56       })
58       $this.trigger(e)
60       if (e.isDefaultPrevented()) return
62       $target = $(selector)
64       this.activate($this.parent('li'), $ul)
65       this.activate($target, $target.parent(), function () {
66         $this.trigger({
67           type: 'shown'
68         , relatedTarget: previous
69         })
70       })
71     }
73   , activate: function ( element, container, callback) {
74       var $active = container.find('> .active')
75         , transition = callback
76             && $.support.transition
77             && $active.hasClass('fade')
79       function next() {
80         $active
81           .removeClass('active')
82           .find('> .dropdown-menu > .active')
83           .removeClass('active')
85         element.addClass('active')
87         if (transition) {
88           element[0].offsetWidth // reflow for transition
89           element.addClass('in')
90         } else {
91           element.removeClass('fade')
92         }
94         if ( element.parent('.dropdown-menu') ) {
95           element.closest('li.dropdown').addClass('active')
96         }
98         callback && callback()
99       }
101       transition ?
102         $active.one($.support.transition.end, next) :
103         next()
105       $active.removeClass('in')
106     }
107   }
110  /* TAB PLUGIN DEFINITION
111   * ===================== */
113   $.fn.tab = function ( option ) {
114     return this.each(function () {
115       var $this = $(this)
116         , data = $this.data('tab')
117       if (!data) $this.data('tab', (data = new Tab(this)))
118       if (typeof option == 'string') data[option]()
119     })
120   }
122   $.fn.tab.Constructor = Tab
125  /* TAB DATA-API
126   * ============ */
128   $(function () {
129     $('body').on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
130       e.preventDefault()
131       $(this).tab('show')
132     })
133   })
135 }(window.jQuery);