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