Difference between revisions of "MediaWiki:Common.js"

From Armagetron
m
m
Line 10: Line 10:
 
iframe.setAttribute('src', "http://www.google.com/calendar/embed?src=davefancella.com_vlfi4psoqnf7ff07vlpdl6dmdk%40group.calendar.google.com");
 
iframe.setAttribute('src', "http://www.google.com/calendar/embed?src=davefancella.com_vlfi4psoqnf7ff07vlpdl6dmdk%40group.calendar.google.com");
 
iframe.style.width = '50em';
 
iframe.style.width = '50em';
iframe.style.height = '60em';
+
iframe.style.height = '50em';
 
googlediv.replaceChild(iframe, link);
 
googlediv.replaceChild(iframe, link);
 
break;
 
break;
 
}
 
}
 
}
 
}

Revision as of 19:13, 15 March 2007

/* Any JavaScript here will be loaded for all users on every page load. */

window.onload = function() {
	var googlediv = document.getElementById('googlecal');
	if (googlediv == null) return;
	for(var link = googlediv.firstChild; link != null; link = link.nextSibling) {
		if(link.nodeType != 1) continue;
		if(link.nodeName != 'a' && link.nodeName != 'A') continue;
		var iframe = document.createElement('iframe');
		iframe.setAttribute('src', "http://www.google.com/calendar/embed?src=davefancella.com_vlfi4psoqnf7ff07vlpdl6dmdk%40group.calendar.google.com");
		iframe.style.width = '50em';
		iframe.style.height = '50em';
		googlediv.replaceChild(iframe, link);
		break;
	}
}