User:Emma/common.js: Difference between revisions
Jump to navigation
Jump to search
Want an adless experience? Log in or Create an account.
mNo edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
if ( wgUserGroups.toString().indexOf('sysop') == -1 || wgUserGroups.toString().indexOf('patroller') == -1) { | if ( wgUserGroups.toString().indexOf('sysop') == -1 || wgUserGroups.toString().indexOf('patroller') == -1) { | ||
pattag.setAttribute("style","display:inline") | pattag.setAttribute("style","display:inline") | ||
} | |||
} | |||
admintag = document.getElementById("admin"); | |||
if (admintag) { | |||
if ( wgUserGroups.toString().indexOf('sysop') == -1) { | |||
admintag.setAttribute("style","display:inline") | |||
} | } | ||
} | } |
Revision as of 20:38, November 5, 2011
function UserNameReplace() { if(typeof(disableUsernameReplace) != 'undefined' && disableUsernameReplace || wgUserName == null) return; $("span.insertusername").html(wgUserName); } addOnloadHook(UserNameReplace); function UserGroupsReplace() { if(typeof(disableUserGroupsReplace) != 'undefined' && disableUserGroupsReplace || wgUserName == null) return; $("span.insertusergroups").html(wgUserGroups); } addOnloadHook(UserGroupsReplace); pattag = document.getElementById("patrol"); if (pattag) { if ( wgUserGroups.toString().indexOf('sysop') == -1 || wgUserGroups.toString().indexOf('patroller') == -1) { pattag.setAttribute("style","display:inline") } } admintag = document.getElementById("admin"); if (admintag) { if ( wgUserGroups.toString().indexOf('sysop') == -1) { admintag.setAttribute("style","display:inline") } }