1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/dropdown.js

166 lines
4.6 KiB
JavaScript
Raw Normal View History

2015-05-06 16:34:14 -04:00
/* ========================================================================
* Bootstrap: dropdown.js v3.3.4
* http://getbootstrap.com/javascript/#dropdowns
2013-05-21 22:30:33 -04:00
* ========================================================================
2014-12-31 19:23:48 -05:00
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
2015-05-06 16:34:14 -04:00
* ======================================================================== */
2011-08-28 00:46:50 -04:00
2014-06-10 01:18:05 -04:00
2015-05-06 16:34:14 -04:00
+function ($) {
'use strict';
2015-05-06 16:34:14 -04:00
// DROPDOWN CLASS DEFINITION
// =========================
2011-11-20 21:19:50 -05:00
2015-05-06 16:34:14 -04:00
var backdrop = '.dropdown-backdrop'
var toggle = '[data-toggle="dropdown"]'
var Dropdown = function (element) {
$(element).on('click.bs.dropdown', this.toggle)
2015-01-03 16:58:44 -05:00
}
2014-05-13 00:15:16 -04:00
2015-05-06 16:34:14 -04:00
Dropdown.VERSION = '3.3.4'
2015-05-06 16:34:14 -04:00
function getParent($this) {
var selector = $this.attr('data-target')
2012-01-28 04:35:13 -05:00
2015-05-06 16:34:14 -04:00
if (!selector) {
selector = $this.attr('href')
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
2015-01-03 16:58:44 -05:00
}
2012-12-07 18:37:32 -05:00
2015-05-06 16:34:14 -04:00
var $parent = selector && $(selector)
2015-05-06 16:34:14 -04:00
return $parent && $parent.length ? $parent : $this.parent()
2015-01-03 16:58:44 -05:00
}
2015-05-06 16:34:14 -04:00
function clearMenus(e) {
if (e && e.which === 3) return
$(backdrop).remove()
$(toggle).each(function () {
var $this = $(this)
var $parent = getParent($this)
var relatedTarget = { relatedTarget: this }
2015-05-06 16:34:14 -04:00
if (!$parent.hasClass('open')) return
2015-05-06 16:34:14 -04:00
if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
2015-05-06 16:34:14 -04:00
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
2015-01-03 16:58:44 -05:00
2015-05-06 16:34:14 -04:00
if (e.isDefaultPrevented()) return
2015-05-06 16:34:14 -04:00
$this.attr('aria-expanded', 'false')
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
})
2015-01-03 16:58:44 -05:00
}
2012-01-28 04:35:13 -05:00
2015-05-06 16:34:14 -04:00
Dropdown.prototype.toggle = function (e) {
var $this = $(this)
2015-05-06 16:34:14 -04:00
if ($this.is('.disabled, :disabled')) return
2015-05-06 16:34:14 -04:00
var $parent = getParent($this)
var isActive = $parent.hasClass('open')
2015-05-06 16:34:14 -04:00
clearMenus()
2015-05-06 16:34:14 -04:00
if (!isActive) {
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
// if mobile we use a backdrop because click events don't delegate
$(document.createElement('div'))
.addClass('dropdown-backdrop')
.insertAfter($(this))
.on('click', clearMenus)
}
2015-05-06 16:34:14 -04:00
var relatedTarget = { relatedTarget: this }
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
2015-05-06 16:34:14 -04:00
if (e.isDefaultPrevented()) return
2015-05-06 16:34:14 -04:00
$this
.trigger('focus')
.attr('aria-expanded', 'true')
2015-05-06 16:34:14 -04:00
$parent
.toggleClass('open')
.trigger('shown.bs.dropdown', relatedTarget)
}
2015-01-03 16:58:44 -05:00
2015-05-06 16:34:14 -04:00
return false
}
2015-05-06 16:34:14 -04:00
Dropdown.prototype.keydown = function (e) {
if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
2015-05-06 16:34:14 -04:00
var $this = $(this)
2015-05-06 16:34:14 -04:00
e.preventDefault()
e.stopPropagation()
2015-05-06 16:34:14 -04:00
if ($this.is('.disabled, :disabled')) return
2015-05-06 16:34:14 -04:00
var $parent = getParent($this)
var isActive = $parent.hasClass('open')
2015-05-06 16:34:14 -04:00
if (!isActive && e.which != 27 || isActive && e.which == 27) {
if (e.which == 27) $parent.find(toggle).trigger('focus')
return $this.trigger('click')
}
2015-05-06 16:34:14 -04:00
var desc = ' li:not(.disabled):visible a'
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
2015-05-06 16:34:14 -04:00
if (!$items.length) return
2015-05-06 16:34:14 -04:00
var index = $items.index(e.target)
if (e.which == 38 && index > 0) index-- // up
if (e.which == 40 && index < $items.length - 1) index++ // down
if (!~index) index = 0
2015-05-06 16:34:14 -04:00
$items.eq(index).trigger('focus')
}
2011-11-20 21:19:50 -05:00
2015-05-06 16:34:14 -04:00
// DROPDOWN PLUGIN DEFINITION
// ==========================
2015-05-06 16:34:14 -04:00
function Plugin(option) {
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.dropdown')
2011-08-28 00:46:50 -04:00
2015-05-06 16:34:14 -04:00
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
if (typeof option == 'string') data[option].call($this)
})
}
2015-05-06 16:34:14 -04:00
var old = $.fn.dropdown
2015-05-06 16:34:14 -04:00
$.fn.dropdown = Plugin
$.fn.dropdown.Constructor = Dropdown
2015-05-06 16:34:14 -04:00
// DROPDOWN NO CONFLICT
// ====================
2015-01-03 16:58:44 -05:00
2015-05-06 16:34:14 -04:00
$.fn.dropdown.noConflict = function () {
$.fn.dropdown = old
return this
}
2015-05-06 16:34:14 -04:00
// APPLY TO STANDARD DROPDOWN ELEMENTS
// ===================================
2015-05-06 16:34:14 -04:00
$(document)
.on('click.bs.dropdown.data-api', clearMenus)
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
.on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
.on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
2011-10-05 00:48:53 -04:00
2015-05-06 16:34:14 -04:00
}(jQuery);