View source for MediaWiki:Common.js
From PigBoats.COM
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* Any JavaScript here will be loaded for all users on every page load. */
document.addEventListener("DOMContentLoaded", function () {
var userGroups = mw.config.get('wgUserGroups');
// If the user is NOT an admin, hide the page tools and wiki tools
if (userGroups.indexOf('sysop') === -1) {
var pageTools = document.getElementById('page-tools');
if (pageTools) {
pageTools.style.display = 'none';
}
var wikiTools = document.getElementById('p-tb');
if (wikiTools) {
wikiTools.style.display = 'none';
}
}
});
000
1:0
Return to MediaWiki:Common.js.