tweets.js.coffee 283 B

1234567891011
  1. $ ->
  2. $('.tweet-body').each ->
  3. $(this).click ->
  4. $(this).off('click')
  5. twttr.widgets.createTweet(
  6. this.dataset.tweetId
  7. this
  8. # conversation: 'none'
  9. # cards: 'hidden'
  10. ).then (el) ->
  11. el.previousSibling.style.display = 'none'