MorningPeak/app/assets/javascripts/contacts.coffee
Arthur Poulet 3ec0c0537a fix contacts.coffee
- the selection was broken on dev / prod environments

close #20
2015-07-18 17:03:10 +02:00

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