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.
No edit summary
mNo edit summary
Line 38: Line 38:
   if ( wgUserGroups.toString().indexOf('bot') != -1) {
   if ( wgUserGroups.toString().indexOf('bot') != -1) {
$(document).ready(function() {
$(document).ready(function() {
   // add 'style="display:inline;"' to all elements with class="bot".
   // add 'style="display:inline;"' to all elements with class="botuser".
   $('.bot').attr("style", {display: "inline !important"})  
   $('.botuser').attr("style", {display: "inline !important"})  
});
});
   }
   }
  else if ( wgUserGroups.toString().indexOf('bot') == -1) {
  else if ( wgUserGroups.toString().indexOf('bot') == -1) {
$(document).ready(function() {
$(document).ready(function() {
   // add 'style="display:none;"' to all elements with class="bot".
   // add 'style="display:none;"' to all elements with class="botuser".
   $('.bot').attr("style", {display: "none"})  
   $('.botuser').attr("style", {display: "none"})  
});
});
   }
   }
});
});

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

if (wgUserGroups){
 var rights_isAuto = (wgUserGroups.toString().indexOf('autoconfirmed') != -1);
 var rights_isPatrol = (wgUserGroups.toString().indexOf('patroller') != -1);
 var rights_isAdmin = (wgUserGroups.toString().indexOf('sysop') != -1);
 var rights_isCrat = (wgUserGroups.toString().indexOf('bureaucrat') != -1);
 var rights = true;
}

$( function() {
  if ( wgUserGroups.toString().indexOf('sysop') != -1 || wgUserGroups.toString().indexOf('patroller') != -1) {
$(document).ready(function() {
  // add 'style="display:inline;"' to all elements with class="patrol".
  $('.patrol').attr("style", {display: "inline !important"}) 
});
  }
 else if ( wgUserGroups.toString().indexOf('sysop') == -1 || wgUserGroups.toString().indexOf('patroller') == -1) {
$(document).ready(function() {
  // add 'style="display:none;"' to all elements with class="patrol".
  $('.patrol').attr("style", {display: "none"}) 
});
  }
});

$( function() {
  if ( wgUserGroups.toString().indexOf('bot') != -1) {
$(document).ready(function() {
  // add 'style="display:inline;"' to all elements with class="botuser".
  $('.botuser').attr("style", {display: "inline !important"}) 
});
  }
 else if ( wgUserGroups.toString().indexOf('bot') == -1) {
$(document).ready(function() {
  // add 'style="display:none;"' to all elements with class="botuser".
  $('.botuser').attr("style", {display: "none"}) 
});
  }
});