aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/widget_bar.coffee
blob: b06d574edf92c4556a929488e9abfa796ccddde3 (plain)
1
2
3
4
5
6
@widget_bar = ->
  $('#widget_bar').each ->
    $(this).on 'click', '.toggleWidgets', (e) ->
      $(this).parent().toggleClass 'open'

$(document).on 'ready turbolinks:load', widget_bar