mirror of https://github.com/twbs/bootstrap.git
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			493 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			493 B
		
	
	
	
		
			JavaScript
		
	
	
	
| (function( $ ){
 | |
| 
 | |
|  /* DROPDOWN PLUGIN DEFINITION
 | |
|   * ========================== */
 | |
| 
 | |
|   function clearMenus() {
 | |
|     $('a.menu').parent('li').removeClass('open')
 | |
|   }
 | |
| 
 | |
|   $(function () {
 | |
|     $(window).bind("click", clearMenus)
 | |
|   })
 | |
| 
 | |
|   $.fn.dropdown = function ( options ) {
 | |
|     return this.each(function () {
 | |
|       $(this).delegate('a.menu', 'click', function (e) {
 | |
|         clearMenus()
 | |
|         $(this).parent('li').toggleClass('open')
 | |
|         return false
 | |
|       })
 | |
|     })
 | |
|   }
 | |
| 
 | |
| })( jQuery || ender ) |