| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  | /* ============================================================ | 
					
						
							| 
									
										
										
										
											2012-12-01 14:30:50 +08:00
										 |  |  |  * bootstrap-dropdown.js v3.0.0 | 
					
						
							| 
									
										
										
										
											2012-01-25 03:08:03 +08:00
										 |  |  |  * http://twitter.github.com/bootstrap/javascript.html#dropdowns
 | 
					
						
							| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  |  * ============================================================ | 
					
						
							| 
									
										
										
										
											2012-01-15 15:28:48 +08:00
										 |  |  |  * Copyright 2012 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. | 
					
						
							|  |  |  |  * ============================================================ */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 12:46:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | !function ($) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   "use strict"; // jshint ;_;
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |  /* DROPDOWN CLASS DEFINITION | 
					
						
							|  |  |  |   * ========================= */ | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |   var toggle = '[data-toggle=dropdown]' | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |     , Dropdown = function (element) { | 
					
						
							| 
									
										
										
										
											2012-01-29 03:03:39 +08:00
										 |  |  |         var $el = $(element).on('click.dropdown.data-api', this.toggle) | 
					
						
							|  |  |  |         $('html').on('click.dropdown.data-api', function () { | 
					
						
							|  |  |  |           $el.parent().removeClass('open') | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |   Dropdown.prototype = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:42:22 +08:00
										 |  |  |     constructor: Dropdown | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   , toggle: function (e) { | 
					
						
							| 
									
										
										
										
											2011-12-21 15:28:48 +08:00
										 |  |  |       var $this = $(this) | 
					
						
							| 
									
										
										
										
											2012-01-28 17:35:13 +08:00
										 |  |  |         , $parent | 
					
						
							| 
									
										
										
										
											2012-01-09 06:19:53 +08:00
										 |  |  |         , isActive | 
					
						
							| 
									
										
										
										
											2011-12-21 15:28:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 12:44:57 +08:00
										 |  |  |       if ($this.is('.disabled, :disabled')) return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |       $parent = getParent($this) | 
					
						
							| 
									
										
										
										
											2012-04-15 12:44:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-09 06:19:53 +08:00
										 |  |  |       isActive = $parent.hasClass('open') | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |       clearMenus() | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |       if (!isActive) { | 
					
						
							|  |  |  |         $parent.toggleClass('open') | 
					
						
							| 
									
										
										
										
											2012-01-28 17:35:13 +08:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 07:37:32 +08:00
										 |  |  |       $this.focus() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |       return false | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |   , keydown: function (e) { | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |       var $this | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |         , $items | 
					
						
							|  |  |  |         , $active | 
					
						
							|  |  |  |         , $parent | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |         , isActive | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |         , index | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |       if (!/(38|40|27)/.test(e.keyCode)) return | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |       $this = $(this) | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       e.preventDefault() | 
					
						
							|  |  |  |       e.stopPropagation() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if ($this.is('.disabled, :disabled')) return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       $parent = getParent($this) | 
					
						
							| 
									
										
										
										
											2012-01-28 17:35:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-09 06:19:53 +08:00
										 |  |  |       isActive = $parent.hasClass('open') | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-23 05:57:57 +08:00
										 |  |  |       if (!isActive || (isActive && e.keyCode == 27)) { | 
					
						
							|  |  |  |         if (e.which == 27) $parent.find(toggle).focus() | 
					
						
							|  |  |  |         return $this.click() | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 06:14:49 +08:00
										 |  |  |       $items = $('[role=menu] li:not(.divider):visible a', $parent) | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |       if (!$items.length) return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |       index = $items.index($items.filter(':focus')) | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       if (e.keyCode == 38 && index > 0) index--                                        // up
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |       if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
 | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |       if (!~index) index = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       $items | 
					
						
							|  |  |  |         .eq(index) | 
					
						
							| 
									
										
										
										
											2012-05-17 15:39:14 +08:00
										 |  |  |         .focus() | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-25 11:40:25 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function clearMenus() { | 
					
						
							| 
									
										
										
										
											2012-09-28 02:45:37 +08:00
										 |  |  |     $(toggle).each(function () { | 
					
						
							|  |  |  |       getParent($(this)).removeClass('open') | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function getParent($this) { | 
					
						
							|  |  |  |     var selector = $this.attr('data-target') | 
					
						
							|  |  |  |       , $parent | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 14:26:36 +08:00
										 |  |  |     $parent = selector && $(selector) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!$parent || !$parent.length) $parent = $this.parent() | 
					
						
							| 
									
										
										
										
											2012-05-17 15:23:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return $parent | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |   /* DROPDOWN PLUGIN DEFINITION | 
					
						
							|  |  |  |    * ========================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  |         , data = $this.data('dropdown') | 
					
						
							|  |  |  |       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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 06:06:01 +08:00
										 |  |  |  /* DROPDOWN NO CONFLICT | 
					
						
							|  |  |  |   * ==================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   $.fn.dropdown.noConflict = function () { | 
					
						
							|  |  |  |     $.fn.dropdown = old | 
					
						
							|  |  |  |     return this | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 12:48:53 +08:00
										 |  |  |   /* APPLY TO STANDARD DROPDOWN ELEMENTS | 
					
						
							|  |  |  |    * =================================== */ | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-28 06:00:02 +08:00
										 |  |  |   $(document) | 
					
						
							| 
									
										
										
										
											2013-01-08 09:13:28 +08:00
										 |  |  |     .on('click.dropdown.data-api', clearMenus) | 
					
						
							|  |  |  |     .on('click.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) | 
					
						
							| 
									
										
										
										
											2013-03-01 11:37:30 +08:00
										 |  |  |     .on('click.dropdown-menu', function (e) { e.stopPropagation() }) | 
					
						
							| 
									
										
										
										
											2013-01-08 09:13:28 +08:00
										 |  |  |     .on('click.dropdown.data-api'  , toggle, Dropdown.prototype.toggle) | 
					
						
							|  |  |  |     .on('keydown.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown) | 
					
						
							| 
									
										
										
										
											2011-10-05 12:48:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-08 09:13:28 +08:00
										 |  |  | }(window.jQuery); |