0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/js/bootstrap-dropdown.js

100 lines
2.7 KiB
JavaScript
Raw Permalink Normal View History

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