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