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

details_behavior.coffee « behaviors « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: decab3e1bed29bc2c9f26804be2308f52298da34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$ ->
  $("body").on "click", ".js-details-target", ->
    container = $(@).closest(".js-details-container")
    container.toggleClass("open")

  # 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()