Gebruiker:Rots61/Clear.js
Naar navigatie springen
Naar zoeken springen
Let op! Nadat je de veranderingen hebt opgeslagen, moet je de cache van je browser nog legen om ze daadwerkelijk te zien.
Mozilla (incl. Firefox) | ctrl-shift-r |
IE | ctrl-f5 |
Opera | f5 |
Safari | cmd-r |
Konqueror | f5 |
function fixAbbreviations() {
var text = document.editform.wpTextbox1.value;
text = text.replace(/AK(?!\w)/g, 'Alaska');
text = text.replace(/AL(?!\w)/g, 'Alabama');
text = text.replace(/AR(?!\w)/g, 'Arkansas');
text = text.replace(/[ ]{2,}/g, ' ');
document.editform.wpTextbox1.value = text;
}
mw.loader.using( 'mediawiki.util', function () {
// Wait for the page to be parsed
$( document ).ready( function () {
if (document.editform) {
var link = mw.util.addPortletLink("p-tb", "#", "Convert abbreviations", "tb-convertabbreviations", "Convert column of US state abbreviations to full names", "");
$( link ).click( function ( event ) {
event.preventDefault();
fixAbbreviations();
} );
}
} );
} );