Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* CSDCheck, restored from its former glory at [[User:Ale jrb/Scripts/csdcheck.js]] [[Special:PermaLink/295431646]] Expanded to work for block, (un)protect, and RevDel menus in addition to delete For deletion and blocking, THIS ONLY WORKS if you switch the new ooui menus for the old (better) ones. Put this in your css: .action-delete .oo-ui-dropdownWidget-handle, .action-protect .oo-ui-dropdownWidget-handle, .mw-special-Block .oo-ui-dropdownWidget-handle, .mw-special-Movepage .oo-ui-dropdownWidget-handle, .mw-special-Revisiondelete .oo-ui-dropdownWidget-handle, .mw-special-AbuseLog .oo-ui-dropdownWidget-handle, .mw-special-Contributions .oo-ui-dropdownWidget-handle { display: none; } .action-delete .oo-ui-indicator-down, .action-protect .oo-ui-indicator-down, .mw-special-Block .oo-ui-indicator-down, .mw-special-Movepage .oo-ui-indicator-down, .mw-special-Revisiondelete .oo-ui-indicator-down, .mw-special-AbuseLog .oo-ui-indicator-down, .mw-special-Contributions .oo-ui-indicator-down { display: inline !important; } Alternatively, put this in your js: if ((['delete', 'protect', 'unprotect'].indexOf(mw.config.get('wgAction')) !== -1) || (['Revisiondelete', 'Block', 'AbuseLog'].indexOf(mw.config.get('wgCanonicalSpecialPageName')) !== -1)) { mw.util.addCSS(".oo-ui-dropdownWidget-handle {display: none;}"); mw.util.addCSS(".oo-ui-indicator-down {display: inline !important;}"); }*/$(function(){// Clean up the visible text in the dropdown// Have to get the element elsewhere because of stupid blockpagefunctioncleanList(optionsArray){if(optionsArray===null||optionsArray===undefined){returnfalse;}varoptionsList=optionsArray.options;varre=/\[\[([^\]|]*\|)?([^\]]*)\]\]/g;// convert pipe links to their display text.for(vari=0;i<optionsList.length;i++){varoption=optionsList[i];option.text=option.text.replace(re,'$2');}}if(mw.config.get('wgAction')==='protect'||mw.config.get('wgAction')==='unprotect'){cleanList(document.getElementsByName('wpProtectReasonSelection')[0]);}elseif(mw.config.get('wgCanonicalSpecialPageName')==='Revisiondelete'){cleanList(document.getElementsByName('wpRevDeleteReasonList')[0]);// Sigh}elseif(mw.config.get('wgCanonicalSpecialPageName')==='Block'){cleanList(document.getElementsByName('wpReason')[0]);// Block dropdown is bad and should feel bad}elseif(mw.config.get('wgCanonicalSpecialPageName')==='AbuseLog'){cleanList(document.getElementsByName('wpdropdownreason')[0]);// OS}elseif(mw.config.get('wgAction')==='delete'){vardelReasonList=document.getElementsByName('wpDeleteReasonList')[0];// Delete is just as bad nowcleanList(delReasonList);// Blank the reason box and replace with the relevant list item, if applicableif(mw.util.getParamValue('wpReason')){// This deletion can be autofilledvarloc=___location.href;varreg=/23([a-z0-9]+)/ig;varresult=reg.exec(loc);varoptions=delReasonList.options;for(vari=0;i<options.length;i++){if(options[i].value.indexOf(result[1])>-1){delReasonList.selectedIndex=options[i].index;document.getElementById('wpReason').value='';break;}}}}});