BigW Consortium Gitlab

details_behavior.coffee 416 Bytes
Newer Older
Riyad Preukschas committed
1 2 3 4
$ ->
  $("body").on "click", ".js-details-target", ->
    container = $(@).closest(".js-details-container")
    container.toggleClass("open")
5 6 7 8 9 10 11 12 13 14 15

  # Show details content. Hides link after click.
  #
  # %div
  #   %a.js-details-expand
  #   %div.js-details-content
  #
  $("body").on "click", ".js-details-expand", (e) ->
    $(@).next('.js-details-content').removeClass("hide")
    $(@).hide()
    e.preventDefault()