User:Emma/common.js: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
mNo edit summary
mNo edit summary
Line 13: Line 13:


$( function() {
$( function() {
   if ( wgUserGroups.toString().indexOf('sysop') != -1 || wgUserGroups.toString().indexOf('patroller') != -1) {
   if ( wgUserGroups.toString().indexOf('sysop') != -1) {
   importStylesheetURI(wgServer +"/User:Matt/patrolclassnone.css&ctype=text/css&action=raw");
   importStylesheetURI(wgServer +"/User:Matt/patrolclassnone.css&ctype=text/css&action=raw");
   }
   }
});
});

Revision as of 20:22, 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);

$( function() {
  if ( wgUserGroups.toString().indexOf('sysop') != -1) {
  importStylesheetURI(wgServer +"/User:Matt/patrolclassnone.css&ctype=text/css&action=raw");
  }
});