Advertisement
Ansolley

Plugin - Twitter Feed Addition

Jun 28th, 2019
1,203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.37 KB | None | 0 0
  1. /**
  2.  * Add Twitter Feed:
  3.  *  - Adds a twitter feed to the main page
  4.  *
  5.  * @author dapil
  6.  * @version 1.0.1
  7.  * @last-edit 25. 4. 2015 18:31
  8.  */
  9.  
  10. BBLog.handle("add.plugin",
  11. {
  12.     id: "dapil-add-twitter-feed",
  13.     name: "Add Twitter Feed",
  14.  
  15.     init: function (instance)
  16.     {
  17.         if(BBLog.cache("mode") != "mohw")
  18.         {
  19.             instance.AddTwitterFeed(instance);
  20.         }
  21.     },
  22.  
  23.     domchange: function (instance)
  24.     {
  25.         if(BBLog.cache("mode") != "mohw")
  26.         {
  27.             instance.AddTwitterFeed(instance);
  28.         }
  29.     },
  30.  
  31.     AddTwitterFeed: function (instance)
  32.     {
  33.       if(!$(".twitter-timeline").length)
  34.       {
  35.         $("#main-postlistsmall").before('<a class="twitter-timeline" data-tweet-limit="4" width="300" data-chrome="transparent noscrollbar nofooter noheader" href="https://twitter.com/Battlefield" data-widget-id="508369636333584384"></a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>');
  36.         $("head").append("<style>#main-postlistsmall{margin-top: 16px} #twitter-widget-0{background-color: rgba(7, 7, 7, 0.5); padding: 0 10px !important}</style>")
  37.       }
  38.     },
  39. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement