Uživatel:Augustin Machacek/monobook.js: Porovnání verzí
(pokus) |
(hm) |
||
(Není zobrazena jedna mezilehlá verze od stejného uživatele.) | |||
Řádka 1: | Řádka 1: | ||
function formatuj_data(text) { | function formatuj_data(text) { | ||
− | return text.replace(/smus | + | return text.replace(/smus/gi, "zmus") |
− | .replace(/smu | + | .replace(/smu/gi, "zmu"); |
− | .replace(/sovat | + | .replace(/sovat/gi, "zovat"); |
.replace(/pokus/gi, "ahoj"); | .replace(/pokus/gi, "ahoj"); | ||
} | } |
Aktuální verse z 20. 2. 2007, 20:20
function formatuj_data(text) { return text.replace(/smus/gi, "zmus") .replace(/smu/gi, "zmu"); .replace(/sovat/gi, "zovat"); .replace(/pokus/gi, "ahoj"); } function priprav_format(node) { if (node.nodeType == 3) { node.data = formatuj_data(node.data); } else { for (var i=0; i<node.childNodes.length; i++) { if ((node.id != 'editform')) priprav_format(node.childNodes[i]); } } } function formatuj() { var node = document.getElementsByTagName('body')[0]; document.title = formatuj_data(document.title); priprav_format(document.getElementById('content')); } aOnloadFunctions[aOnloadFunctions.length] = formatuj;