Difference between revisions of "User:DavidFichtmueller/monobook.js"

From BioCASe Provider Software
Jump to: navigation, search
(Created page with " addOnloadHook(function(){ addPortletLink("p-personal","http://wiki.bgbm.org/bps/index.php?title=User:DavidFichtmueller/monobook.js&action=edit","monobook.js", "t-edit-vector","...")
 
Line 1: Line 1:
 
 
addOnloadHook(function(){
 
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"));
 
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-specialpages").parentNode;
+
var mainNavigation = document.getElementById("t-whatlinkshere").parentNode;
 
var specialpages= document.getElementById("t-specialpages")
 
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);
 
addPortletLink("p-tb","http://wiki.bgbm.org/bps/index.php/Special:RecentChanges","Recent Changes", "t-recent-changes","Recent Changes","s",specialpages);

Revision as of 12:21, 12 August 2011

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(