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 mainNavigation = document.getElementById("t-whatlinkshere").parentNode;
	var specialpages= document.getElementById("t-specialpages")	
	addPortletLink("p-tb","http://wiki.bgbm.org/bps/index.php/Special:RecentChanges","Recent Changes", "t-recent-changes","Recent Changes","s",specialpages);




	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-namespaces","http://wiki.bgbm.org/bps/index.php/Special:Contributions/"+username,"Contributions", "ca-contributions","Contributions of "+username,"b");
	}
}
); //closes addOnloadHook(