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

From BioCASe Provider Software
Jump to: navigation, search
Line 19: Line 19:
 
username = username.substring(0,slashPos);
 
username = username.substring(0,slashPos);
 
}
 
}
addPortletLink("p-cationc","http://wiki.bgbm.org/bps/index.php/Special:Contributions/"+username,"Contributions", "ca-contributions","Contributions of "+username,"b",document.getElementById("ca-talk").nextElementSibling);
+
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="1em";
+
document.getElementById("ca-talk").style.marginRight="0.3em";
 
document.getElementById("ca-contributions").style.marginRight="1.6em";
 
document.getElementById("ca-contributions").style.marginRight="1.6em";
 
}
 
}
 
}
 
}
 
); //closes addOnloadHook(
 
); //closes addOnloadHook(

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




	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(