Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bootstrap-dropdown.js « js « assets « examples - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fbeb44b09ed2010b03b047cdf06b91b4960358b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(function( $ ){

 /* DROPDOWN PLUGIN DEFINITION
  * ========================== */

  function clearMenus() {
    $('a.menu').parent('li').removeClass('open')
  }

  $(function () {
    $('body').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 )