aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/nav_panels.coffee
blob: 25f15f0633e7e97169ab7f292c6bd4faf37c216f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ ->
  $('#menu_top [data-panel="toggle"]').on 'click', (e) ->
    e.preventDefault()
    $(this).siblings().removeClass 'active'
    $(this).toggleClass 'active'

    target = $(this).data('target')
    $(target).siblings().removeClass 'open'
    $(target).toggleClass 'open'

  $(document).on 'scroll', ->
    $("[data-panel='toggle']").each ->
      $(this).removeClass 'active'
      $($(this).data('target')).removeClass 'open'