tweets.js 366 B

123456789101112131415
  1. $(() =>
  2. $(".tweet-body").each(function () {
  3. return $(this).click(function () {
  4. $(this).off("click");
  5. return twttr.widgets
  6. .createTweet(
  7. this.dataset.tweetId,
  8. this
  9. // conversation: 'none'
  10. // cards: 'hidden'
  11. )
  12. .then((el) => (el.previousSibling.style.display = "none"));
  13. });
  14. })
  15. );