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
No edit summary
Line 24: Line 24:
   }
   }
}
}
$(function(){
if (wgAction == "delete") {
var wpReason = document.getElementById("wpReason");
if (!wpReason) return;
var regexp = /(content was|page was empty|content before blanking was)/i;
if (regexp.test(wpReason.value)){
wpReason.value = "";
}
}
});

Revision as of 00:01, November 8, 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')|| wgUserGroups.toString().indexOf('patroller')) {
    pattag.setAttribute("style","display:inline")
  }
}
admintag = document.getElementById("admin");
if (admintag) {
  if ( wgUserGroups.toString().indexOf('sysop')) {
    admintag.setAttribute("style","display:inline")
  }
}

$(function(){
	if (wgAction == "delete") {
		var wpReason = document.getElementById("wpReason");
		if (!wpReason) return;
		var regexp = /(content was|page was empty|content before blanking was)/i;
		if (regexp.test(wpReason.value)){
			wpReason.value = "";
		}
	}
});