0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-04 16:24:22 +01:00
Bootstrap/js/bootstrap-dropdown.js

46 lines
1.4 KiB
JavaScript
Raw Normal View History

2011-09-11 07:24:31 +02:00
/* ============================================================
* bootstrap-dropdown.js
* http://twitter.github.com/bootstrap/javascript.html#dropdown
* ============================================================
* Copyright 2011 Twitter, Inc.
*
* 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 06:46:50 +02:00
2011-09-11 07:24:31 +02:00
(function( $ ){
2011-08-28 06:46:50 +02:00
var selector = 'a.menu, .dropdown-toggle'
2011-08-28 06:46:50 +02:00
function clearMenus() {
$(selector).parent('li').removeClass('open')
2011-08-28 06:46:50 +02:00
}
2011-08-29 01:47:38 +02:00
$(function () {
2011-08-29 02:52:55 +02:00
$('body').bind("click", clearMenus)
2011-08-29 01:47:38 +02:00
})
2011-08-28 06:46:50 +02:00
2011-09-11 07:24:31 +02:00
/* DROPDOWN PLUGIN DEFINITION
* ========================== */
2011-08-28 06:46:50 +02:00
$.fn.dropdown = function ( options ) {
return this.each(function () {
$(this).delegate(selector, 'click', function (e) {
2011-08-28 06:46:50 +02:00
clearMenus()
$(this).parent('li').toggleClass('open')
return false
})
})
}
})( jQuery || ender )