You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
963 B

6 years ago
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>socialCountBadge - demo</title>
  5. <link rel="stylesheet" href="socialCountBadge.css">
  6. </head>
  7. <body>
  8. <div id="socialCountBadge"></div>
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  10. <script src="socialCountBadge.js"></script>
  11. <script>
  12. var badges = {
  13. hn: {
  14. link: "https://news.ycombinator.com/item?id=16069200",
  15. url:"https://hacker-news.firebaseio.com/v0/item/16069200.json",
  16. callback: parseHN,
  17. img: "img/hackernews.png",
  18. count: null
  19. },
  20. reddit: {
  21. link: "https://www.reddit.com/r/Python/comments/7o23lb/hacking_wifi_to_inject_cryptocurrency_miner_to/",
  22. url:"https://www.reddit.com/r/Python/comments/7o23lb/hacking_wifi_to_inject_cryptocurrency_miner_to.json",
  23. callback: parseReddit,
  24. img: "img/reddit.png",
  25. count: null
  26. }
  27. };
  28. socialCountBadge_init();
  29. </script>
  30. </body>
  31. </html>