Gebruiker:Rots61/Clear.js: verschil tussen versies
Naar navigatie springen
Naar zoeken springen
(De pagina is leeggehaald) Label: Leeghalen |
|||
(6 tussenliggende versies door dezelfde gebruiker niet weergegeven) | |||
Regel 1: | Regel 1: | ||
− | function fixAbbreviations() { |
||
− | var text = document.editform.wpTextbox1.value; |
||
− | text = text.replace(/AK(?!\w)/g, '$1Alaska'); |
||
− | text = text.replace(/AL(?!\w)/g, '$1Alabama'); |
||
− | text = text.replace(/AR(?!\w)/g, '$1Arkansas'); |
||
− | text = text.replace(/[ ]{2,}/g, '$1 '); |
||
− | 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(); |
||
− | |||
− | } ); |
||
− | } |
||
− | } ); |
||
− | } ); |