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