2013-05-21 22:30:33 -04:00
|
|
|
/* ========================================================================
|
2014-11-12 12:03:16 -05:00
|
|
|
* Bootstrap: dropdown.js v3.3.1
|
2013-10-29 13:10:47 -04:00
|
|
|
* 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.
|
2013-12-18 18:28:08 -05:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2013-05-21 22:30:33 -04:00
|
|
|
* ======================================================================== */
|
2011-09-11 01:24:31 -04:00
|
|
|
|
2011-08-28 00:46:50 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
+function ($) {
|
|
|
|
'use strict';
|
2014-06-10 01:18:05 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
// DROPDOWN CLASS DEFINITION
|
|
|
|
// =========================
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var backdrop = '.dropdown-backdrop'
|
|
|
|
var toggle = '[data-toggle="dropdown"]'
|
|
|
|
var Dropdown = function (element) {
|
|
|
|
$(element).on('click.bs.dropdown', this.toggle)
|
|
|
|
}
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2014-11-12 12:03:16 -05:00
|
|
|
Dropdown.VERSION = '3.3.1'
|
2012-04-15 00:44:57 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
Dropdown.prototype.toggle = function (e) {
|
|
|
|
var $this = $(this)
|
2014-05-13 00:15:16 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if ($this.is('.disabled, :disabled')) return
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var $parent = getParent($this)
|
|
|
|
var isActive = $parent.hasClass('open')
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
clearMenus()
|
2012-01-28 04:35:13 -05:00
|
|
|
|
2014-06-23 14:07:18 -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
|
|
|
|
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
|
|
|
}
|
2012-12-07 18:37:32 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var relatedTarget = { relatedTarget: this }
|
|
|
|
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
|
2013-05-25 02:15:04 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if (e.isDefaultPrevented()) return
|
2013-05-25 02:15:04 -04:00
|
|
|
|
2014-05-22 18:13:41 -04:00
|
|
|
$this
|
|
|
|
.trigger('focus')
|
|
|
|
.attr('aria-expanded', 'true')
|
2013-05-25 02:15:04 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
$parent
|
|
|
|
.toggleClass('open')
|
|
|
|
.trigger('shown.bs.dropdown', relatedTarget)
|
2013-08-17 19:18:26 -04:00
|
|
|
}
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
return false
|
|
|
|
}
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
Dropdown.prototype.keydown = function (e) {
|
2014-11-11 19:18:06 -05:00
|
|
|
if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var $this = $(this)
|
2012-01-28 04:35:13 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
e.preventDefault()
|
|
|
|
e.stopPropagation()
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if ($this.is('.disabled, :disabled')) return
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var $parent = getParent($this)
|
|
|
|
var isActive = $parent.hasClass('open')
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2014-10-02 23:43:03 -04:00
|
|
|
if ((!isActive && e.which != 27) || (isActive && e.which == 27)) {
|
2014-06-23 14:07:18 -04:00
|
|
|
if (e.which == 27) $parent.find(toggle).trigger('focus')
|
|
|
|
return $this.trigger('click')
|
|
|
|
}
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var desc = ' li:not(.divider):visible a'
|
|
|
|
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if (!$items.length) return
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-09-23 05:19:15 -04:00
|
|
|
var index = $items.index(e.target)
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2014-10-02 23:43:03 -04:00
|
|
|
if (e.which == 38 && index > 0) index-- // up
|
|
|
|
if (e.which == 40 && index < $items.length - 1) index++ // down
|
2014-06-23 14:07:18 -04:00
|
|
|
if (!~index) index = 0
|
2011-11-24 22:40:25 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
$items.eq(index).trigger('focus')
|
|
|
|
}
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
function clearMenus(e) {
|
|
|
|
if (e && e.which === 3) return
|
|
|
|
$(backdrop).remove()
|
|
|
|
$(toggle).each(function () {
|
2014-07-22 01:44:35 -04:00
|
|
|
var $this = $(this)
|
|
|
|
var $parent = getParent($this)
|
2014-06-23 14:07:18 -04:00
|
|
|
var relatedTarget = { relatedTarget: this }
|
2014-07-22 01:44:35 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if (!$parent.hasClass('open')) return
|
2014-07-22 01:44:35 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
|
2014-07-22 01:44:35 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if (e.isDefaultPrevented()) return
|
2014-07-22 01:44:35 -04:00
|
|
|
|
2014-05-22 18:13:41 -04:00
|
|
|
$this.attr('aria-expanded', 'false')
|
2014-06-23 14:07:18 -04:00
|
|
|
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
|
|
|
|
})
|
|
|
|
}
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
function getParent($this) {
|
|
|
|
var selector = $this.attr('data-target')
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if (!selector) {
|
|
|
|
selector = $this.attr('href')
|
|
|
|
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
2014-06-12 14:11:04 -04:00
|
|
|
}
|
2012-05-17 03:23:11 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var $parent = selector && $(selector)
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
return $parent && $parent.length ? $parent : $this.parent()
|
|
|
|
}
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
// DROPDOWN PLUGIN DEFINITION
|
|
|
|
// ==========================
|
|
|
|
|
|
|
|
function Plugin(option) {
|
|
|
|
return this.each(function () {
|
|
|
|
var $this = $(this)
|
|
|
|
var data = $this.data('bs.dropdown')
|
2013-05-16 15:50:06 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
|
|
|
if (typeof option == 'string') data[option].call($this)
|
|
|
|
})
|
|
|
|
}
|
2011-08-28 00:46:50 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
var old = $.fn.dropdown
|
2014-04-22 01:03:33 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
$.fn.dropdown = Plugin
|
|
|
|
$.fn.dropdown.Constructor = Dropdown
|
2011-12-21 02:28:48 -05:00
|
|
|
|
2011-11-20 23:58:04 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
// DROPDOWN NO CONFLICT
|
|
|
|
// ====================
|
2012-12-07 17:06:01 -05:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
$.fn.dropdown.noConflict = function () {
|
|
|
|
$.fn.dropdown = old
|
|
|
|
return this
|
|
|
|
}
|
2012-12-07 17:06:01 -05:00
|
|
|
|
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
// APPLY TO STANDARD DROPDOWN ELEMENTS
|
|
|
|
// ===================================
|
2013-05-16 15:50:06 -04:00
|
|
|
|
2014-06-23 14:07:18 -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)
|
2014-08-26 17:34:21 -04:00
|
|
|
.on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
|
|
|
|
.on('keydown.bs.dropdown.data-api', '[role="menu"]', Dropdown.prototype.keydown)
|
|
|
|
.on('keydown.bs.dropdown.data-api', '[role="listbox"]', Dropdown.prototype.keydown)
|
2011-10-05 00:48:53 -04:00
|
|
|
|
2014-06-23 14:07:18 -04:00
|
|
|
}(jQuery);
|