11 lines
347 B
CoffeeScript
11 lines
347 B
CoffeeScript
App.Followable =
|
|
|
|
initialize: ->
|
|
$('.followable-content a[data-toggle]').on 'click', (event) ->
|
|
event.preventDefault()
|
|
|
|
update: (followable_id, button) ->
|
|
$("#" + followable_id + " .js-follow").html(button)
|
|
# Temporary line. Waiting for issue resolution: https://github.com/consul/consul/issues/1736
|
|
initialize_modules()
|