2011-09-11 07:24:31 +02:00
|
|
|
/* ============================================================
|
2012-04-24 11:19:02 +02:00
|
|
|
* bootstrap-dropdown.js v2.0.3
|
2012-01-24 20:08:03 +01:00
|
|
|
* http://twitter.github.com/bootstrap/javascript.html#dropdowns
|
2011-09-11 07:24:31 +02:00
|
|
|
* ============================================================
|
2012-01-15 08:28:48 +01:00
|
|
|
* Copyright 2012 Twitter, Inc.
|
2011-09-11 07:24:31 +02: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.
|
|
|
|
* ============================================================ */
|
|
|
|
|
2011-08-28 06:46:50 +02:00
|
|
|
|
2012-04-15 01:29:53 +02:00
|
|
|
!function ($) {
|
|
|
|
|
|
|
|
"use strict"; // jshint ;_;
|
2011-11-21 03:19:50 +01:00
|
|
|
|
|
|
|
|
2011-11-25 04:40:25 +01:00
|
|
|
/* DROPDOWN CLASS DEFINITION
|
|
|
|
* ========================= */
|
2011-11-21 05:58:04 +01:00
|
|
|
|
2011-11-25 04:40:25 +01:00
|
|
|
var toggle = '[data-toggle="dropdown"]'
|
2012-04-15 01:29:53 +02:00
|
|
|
, Dropdown = function (element) {
|
2012-01-28 20:03:39 +01:00
|
|
|
var $el = $(element).on('click.dropdown.data-api', this.toggle)
|
|
|
|
$('html').on('click.dropdown.data-api', function () {
|
|
|
|
$el.parent().removeClass('open')
|
|
|
|
})
|
2011-11-25 04:40:25 +01:00
|
|
|
}
|
2011-11-21 05:58:04 +01:00
|
|
|
|
2011-11-25 04:40:25 +01:00
|
|
|
Dropdown.prototype = {
|
|
|
|
|
2011-12-01 07:42:22 +01:00
|
|
|
constructor: Dropdown
|
|
|
|
|
2012-04-15 01:29:53 +02:00
|
|
|
, toggle: function (e) {
|
2011-12-21 08:28:48 +01:00
|
|
|
var $this = $(this)
|
2012-01-28 10:35:13 +01:00
|
|
|
, $parent
|
2012-04-15 07:43:36 +02:00
|
|
|
, selector
|
2012-01-08 23:19:53 +01:00
|
|
|
, isActive
|
2011-12-21 08:28:48 +01:00
|
|
|
|
2012-04-15 06:44:57 +02:00
|
|
|
if ($this.is('.disabled, :disabled')) return
|
|
|
|
|
|
|
|
selector = $this.attr('data-target')
|
|
|
|
|
2012-01-28 10:35:13 +01:00
|
|
|
if (!selector) {
|
|
|
|
selector = $this.attr('href')
|
|
|
|
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
|
|
|
}
|
|
|
|
|
|
|
|
$parent = $(selector)
|
2011-12-21 08:28:48 +01:00
|
|
|
$parent.length || ($parent = $this.parent())
|
2012-01-28 10:35:13 +01:00
|
|
|
|
2012-01-08 23:19:53 +01:00
|
|
|
isActive = $parent.hasClass('open')
|
2011-11-21 05:58:04 +01:00
|
|
|
|
2011-11-25 04:40:25 +01:00
|
|
|
clearMenus()
|
2012-04-15 01:29:53 +02:00
|
|
|
|
|
|
|
if (!isActive) $parent.toggleClass('open')
|
2011-11-21 05:58:04 +01:00
|
|
|
|
2011-11-25 04:40:25 +01:00
|
|
|
return false
|
|
|
|
}
|
2011-11-21 05:58:04 +01:00
|
|
|
|
2011-11-25 04:40:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function clearMenus() {
|
2011-12-21 08:28:48 +01:00
|
|
|
$(toggle).parent().removeClass('open')
|
2011-11-21 05:58:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-21 03:19:50 +01:00
|
|
|
/* DROPDOWN PLUGIN DEFINITION
|
|
|
|
* ========================== */
|
|
|
|
|
2012-04-15 01:29:53 +02:00
|
|
|
$.fn.dropdown = function (option) {
|
2011-11-21 03:19:50 +01:00
|
|
|
return this.each(function () {
|
2011-11-25 04:40:25 +01:00
|
|
|
var $this = $(this)
|
|
|
|
, data = $this.data('dropdown')
|
|
|
|
if (!data) $this.data('dropdown', (data = new Dropdown(this)))
|
|
|
|
if (typeof option == 'string') data[option].call($this)
|
2011-11-21 03:19:50 +01:00
|
|
|
})
|
|
|
|
}
|
2011-08-28 06:46:50 +02:00
|
|
|
|
2011-12-21 08:28:48 +01:00
|
|
|
$.fn.dropdown.Constructor = Dropdown
|
|
|
|
|
2011-11-21 05:58:04 +01:00
|
|
|
|
2011-10-05 06:48:53 +02:00
|
|
|
/* APPLY TO STANDARD DROPDOWN ELEMENTS
|
|
|
|
* =================================== */
|
2011-11-21 03:19:50 +01:00
|
|
|
|
2011-10-05 06:48:53 +02:00
|
|
|
$(function () {
|
2012-01-28 10:35:13 +01:00
|
|
|
$('html').on('click.dropdown.data-api', clearMenus)
|
2012-03-20 07:13:55 +01:00
|
|
|
$('body')
|
|
|
|
.on('click.dropdown', '.dropdown form', function (e) { e.stopPropagation() })
|
|
|
|
.on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
2011-10-05 06:48:53 +02:00
|
|
|
})
|
|
|
|
|
2012-04-15 01:29:53 +02:00
|
|
|
}(window.jQuery);
|