User:DavidFichtmueller/monobook.js

From BioCASe Provider Software
Jump to: navigation, search

Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
addOnloadHook(function(){
	addPortletLink("p-personal","http://wiki.bgbm.org/bps/index.php?title=User:DavidFichtmueller/monobook.js&action=edit","monobook.js", "t-edit-vector","edit vector.js","v",document.getElementById("pt-preferences"));

	
	var firstElement = document.getElementById("t-specialpages").parentNode.firstElementChild;
	addPortletLink("p-tb","http://wiki.bgbm.org/bps/index.php/Special:RecentChanges","Recent Changes", "t-recent-changes","Recent Changes","s",firstElement);




	if(wgNamespaceNumber==2 || wgNamespaceNumber==3){
		//user namespace or user discussion namespace
		
		var slashPos = wgTitle.indexOf('/');
		var username = wgTitle;
		if(slashPos != -1){
			// it's a subpage
			username = username.substring(0,slashPos);
		}
		addPortletLink("p-cactions","http://wiki.bgbm.org/bps/index.php/Special:Contributions/"+username,"Contributions", "ca-contributions","Contributions of "+username,"b",document.getElementById("ca-talk").nextElementSibling);
		document.getElementById("ca-talk").style.marginRight="0.3em";
		document.getElementById("ca-contributions").style.marginRight="1.6em";
	}
}
); //closes addOnloadHook(