Games Hub
Advertisement

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// ==UserScript==
// @name           Wikia Side Rail Social Icons
// @namespace      http://userscripts.org/users/Madnessfan34537
// @author         Madnessfan34537
// @description    Adds social media icons for Destinypedia to the side rail of articles.
// @include        http://*.wikia.com/*
// ==/UserScript==
 
function SocialIcons() {
 
    var userArray = wgPageName.split(":");
 
    $('.WikiaRail').prepend('<div style="right:-1px; top:108px; position: absolute;"><div style="position: absolute;" class="SocialIcon"><div style="float:right;"><a href="https://www.facebook.com/pages/Destinypedia/498321176909780?fref=ts"><img src="http://images.wikia.com/destinypedia/images/8/8f/Facebook_Icon.png"></a></div></div><div style="position: absolute; margin-top:42px" class="SocialIcon"><div style="float:right;"><a href="http://www.twitter.com/DpediaTeam"><img src="http://images.wikia.com/destinypedia/images/9/92/Twitter_Icon.png"></a></div></div><div style="position: absolute; margin-top:84px" class="SocialIcon"><div style="float:right;"><a href="http://halo.wikia.com/wiki/Special:RecentChanges?feed=rss&type=html"><img src="http://images.wikia.com/destinypedia/images/c/c7/RSS_Icon.png"></a></div></div><div style="position: absolute; margin-top:126px" class="SocialIcon"><div style="float:right;"><a href="https://www.bungie.net/en-us/Groups/Detail?groupId=18278"><img src="http://images.wikia.com/destinypedia/images/2/2e/Bungie_Icon.png"></a></div></div><div style="position: absolute; margin-top:168px" class="SocialIcon"><div style="float:right;"><a href="http://www.wikia.com/Mobile%2FGameGuides"><img src="http://images.wikia.com/destinypedia/images/c/c0/Game_Guides_Icon.png"></a></div></div></div>');
 
}
 
        if (mw.config.get("wgNamespaceNumber") != "user") {
		addOnloadHook(SocialIcons);
 
}

// ============================================================
// wikiSidething
// from Brickipedia
// Function: Adds a new sidebar element 
// Modified for use on tardis.wikia.com by [[User:Czechout]]
// Version 1.5 modified by [[user:452]]
// ============================================================
$(function() {
	if(skin == "oasis") {
		$('#WikiaRail').bind('DOMNodeInserted', function(event) { //fires after lazy-loading takes place.  
			var $sidebar = $('#WikiaRecentActivity');
			if ($sidebar.size()) {
				$('#WikiaRail').unbind('DOMNodeInserted');
				var comboString = '<div class="WikiaTopTenList module"></div>';
				$($sidebar).before(comboString);
				$('.WikiaTopTenList').load('/wiki/Top_10_list:Test_5?action=render #toplists-list-body ul', function() {
					$('.WikiaTopTenList ul li:last-child').remove();
				});
			}
		});
	} 
	else if(skin == "monobook") {
     
	}
});
Advertisement