Skip to content

Instantly share code, notes, and snippets.

@shrirambalakrishnan
Last active November 5, 2018 18:45
Show Gist options
  • Save shrirambalakrishnan/7c2bb19052dafa43a0a3fcf456749572 to your computer and use it in GitHub Desktop.
Save shrirambalakrishnan/7c2bb19052dafa43a0a3fcf456749572 to your computer and use it in GitHub Desktop.
# app/assets/javascripts/cable/subscriptions/movies.coffee
App.cable.subscriptions.create { channel: "MoviesChannel" },
received: (data) ->
@appendToMoviesList(data)
appendToMoviesList: (data) ->
$('.movies-list').append( @getHtml(data) )
getHtml: (data) ->
"""
<li>
<div>
<span>#{data["name"]}</span>
</div>
</li>
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment