twbs--bootstrap/js/dropdown.js

144 lines
3.9 KiB
JavaScript
Raw Normal View History

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