Difference between revisions of "MediaWiki:Common.js"
| Line 10: | Line 10: | ||
if (thisSpanTag.className.match(/\bmw-headline\b/)) { | if (thisSpanTag.className.match(/\bmw-headline\b/)) { | ||
var temp = encodeURIComponent(thisSpanTag.textContent); | var temp = encodeURIComponent(thisSpanTag.textContent); | ||
| − | thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color% | + | thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200x0000FF;fill;color%200x000000;' + |
"font%20'A28.ttf',12,12;string%20'" + | "font%20'A28.ttf',12,12;string%20'" + | ||
temp + "'" + '" alt="' + temp + '" />'; | temp + "'" + '" alt="' + temp + '" />'; | ||
Revision as of 21:05, 9 September 2007
/* Any JavaScript here will be loaded for all users on every page load. */
window.runOnloadHook = function () {
var h2Tags = document.getElementsByTagName('h2');
for (var i = 0; i < h2Tags.length; i++) {
var thisH2Tag = h2Tags[i];
var spanTags = thisH2Tag.getElementsByTagName('span');
for (var j = 0; j < spanTags.length; j++) {
var thisSpanTag = spanTags[j];
if (thisSpanTag.className.match(/\bmw-headline\b/)) {
var temp = encodeURIComponent(thisSpanTag.textContent);
thisSpanTag.innerHTML = '<img src="http://apple2.info/a2/fdt2.gif?exec=size%2010,10;autoresize%20both;color%200x0000FF;fill;color%200x000000;' +
"font%20'A28.ttf',12,12;string%20'" +
temp + "'" + '" alt="' + temp + '" />';
}
}
}
}