6 lines
141 B
CoffeeScript
6 lines
141 B
CoffeeScript
|
$ ->
|
||
|
$("body").on "click", ".js-details-target", ->
|
||
|
container = $(@).closest ".js-details-container"
|
||
|
|
||
|
container.toggleClass "open"
|