3ec0c0537a
- the selection was broken on dev / prod environments close #20
11 lines
452 B
CoffeeScript
11 lines
452 B
CoffeeScript
# Place all the behaviors and hooks related to the matching controller here.
|
|
# All this logic will automatically be available in application.js.
|
|
# You can use CoffeeScript in this file: http://coffeescript.org/
|
|
updateViewAtWhenClick = () ->
|
|
$('.contact-link-view_at').bind('ajax:success', (event, data, status, xhr) ->
|
|
this.parentElement.children[7].textContent = data["view_at"]
|
|
)
|
|
|
|
$ ->
|
|
updateViewAtWhenClick()
|