You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 regels
1.6 KiB

  1. /* ============================================================
  2. * bootstrap-dropdown.js v1.4.0
  3. * http://twitter.github.com/bootstrap/javascript.html#dropdown
  4. * ============================================================
  5. * Copyright 2011 Twitter, Inc.
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. * ============================================================ */
  19. !function( $ ){
  20. "use strict"
  21. /* DROPDOWN PLUGIN DEFINITION
  22. * ========================== */
  23. $.fn.dropdown = function ( selector ) {
  24. return this.each(function () {
  25. $(this).delegate(selector || d, 'click', function (e) {
  26. var li = $(this).parent('li')
  27. , isActive = li.hasClass('open')
  28. clearMenus()
  29. !isActive && li.toggleClass('open')
  30. return false
  31. })
  32. })
  33. }
  34. /* APPLY TO STANDARD DROPDOWN ELEMENTS
  35. * =================================== */
  36. var d = 'a.menu, .dropdown-toggle'
  37. function clearMenus() {
  38. $(d).parent('li').removeClass('open')
  39. }
  40. $(function () {
  41. $('html').bind("click", clearMenus)
  42. $('body').dropdown( '[data-dropdown] a.menu, [data-dropdown] .dropdown-toggle' )
  43. })
  44. }( window.jQuery || window.ender );