| 
									
										
										
										
											2013-05-22 10:30:33 +08:00
										 |  |  | /* ======================================================================== | 
					
						
							| 
									
										
										
										
											2013-11-07 04:57:28 +08:00
										 |  |  |  * Bootstrap: dropdown.js v3.0.2 | 
					
						
							| 
									
										
										
										
											2013-10-30 01:10:47 +08:00
										 |  |  |  * http://getbootstrap.com/javascript/#dropdowns
 | 
					
						
							| 
									
										
										
										
											2013-05-22 10:30:33 +08:00
										 |  |  |  * ======================================================================== | 
					
						
							| 
									
										
										
										
											2013-10-23 00:41:33 +08:00
										 |  |  |  * Copyright 2013 Twitter, Inc. | 
					
						
							| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 10:30:33 +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' | 
					
						
							|  |  |  |   var toggle   = '[data-toggle=dropdown]' | 
					
						
							|  |  |  |   var Dropdown = function (element) { | 
					
						
							| 
									
										
										
										
											2013-05-25 14:15:04 +08:00
										 |  |  |     var $el = $(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-05-17 09:15:34 +08:00
										 |  |  |         // if mobile we 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
										 |  |  | 
 | 
					
						
							|  |  |  |       $parent.trigger(e = $.Event('show.bs.dropdown')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (e.isDefaultPrevented()) return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       $parent | 
					
						
							|  |  |  |         .toggleClass('open') | 
					
						
							|  |  |  |         .trigger('shown.bs.dropdown') | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 07:18:26 +08:00
										 |  |  |       $this.focus() | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											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)) { | 
					
						
							|  |  |  |       if (e.which == 27) $parent.find(toggle).focus() | 
					
						
							|  |  |  |       return $this.click() | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 03:50:06 +08:00
										 |  |  |     var $items = $('[role=menu] li:not(.divider):visible a', $parent) | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |     if (!~index)                                      index=0 | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 03:50:06 +08:00
										 |  |  |     $items.eq(index).focus() | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function clearMenus() { | 
					
						
							| 
									
										
										
										
											2013-05-17 03:50:06 +08:00
										 |  |  |     $(backdrop).remove() | 
					
						
							| 
									
										
										
										
											2013-07-24 09:44:08 +08:00
										 |  |  |     $(toggle).each(function (e) { | 
					
						
							| 
									
										
										
										
											2013-05-25 14:15:04 +08: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 15:23:11 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function getParent($this) { | 
					
						
							|  |  |  |     var selector = $this.attr('data-target') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!selector) { | 
					
						
							|  |  |  |       selector = $this.attr('href') | 
					
						
							| 
									
										
										
										
											2012-08-28 12:27:01 +08:00
										 |  |  |       selector = selector && /#/.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-05-17 03:50:06 +08:00
										 |  |  |       var data  = $this.data('dropdown') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |       if (!data) $this.data('dropdown', (data = new Dropdown(this))) | 
					
						
							|  |  |  |       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() }) | 
					
						
							|  |  |  |     .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 12:48:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-23 02:50:15 +08:00
										 |  |  | }(jQuery); |