MediaWiki:Common.js: Difference between revisions
Appearance
Created page with "→Any JavaScript here will be loaded for all users on every page load.: $(document).ready(function () { $('#ca-viewsource').hide(); }); $(document).ready(function() { if (mw.config.get("wgAction") === "edit" || mw.config.get("wgAction") === "submit") { var userGroups = mw.config.get('wgUserGroups'); // Only tag regular 'user' edits, not sysop or approver if (userGroups.includes('user') && !userGroups.includes('approver') && !userGroups.includes('s..." |
No edit summary Tag: Reverted |
||
Line 16: | Line 16: | ||
} | } | ||
} | } | ||
} | |||
}); | |||
$(document).ready(function () { | |||
if ($('#p-logo').length && !$('#wiki-tagline').length) { | |||
$('<div id="wiki-tagline">The Free Encyclopedia</div>').insertAfter('#p-logo'); | |||
} | } | ||
}); | }); |
Revision as of 19:25, 18 June 2025
/* Any JavaScript here will be loaded for all users on every page load. */ $(document).ready(function () { $('#ca-viewsource').hide(); }); $(document).ready(function() { if (mw.config.get("wgAction") === "edit" || mw.config.get("wgAction") === "submit") { var userGroups = mw.config.get('wgUserGroups'); // Only tag regular 'user' edits, not sysop or approver if (userGroups.includes('user') && !userGroups.includes('approver') && !userGroups.includes('sysop')) { var $wpTextbox1 = $('#wpTextbox1'); if ($wpTextbox1.length && !$wpTextbox1.val().includes("{{NeedsReview}}")) { $wpTextbox1.val("{{NeedsReview}}\n" + $wpTextbox1.val()); } } } }); $(document).ready(function () { if ($('#p-logo').length && !$('#wiki-tagline').length) { $('<div id="wiki-tagline">The Free Encyclopedia</div>').insertAfter('#p-logo'); } });