Difference between revisions of "MediaWiki:Common.js"

From Armagetron
(/me smacks self)
m (apparently the calendar is to be used on its own page, so I set the width to 100%)
 
(9 intermediate revisions by 2 users not shown)
Line 2: Line 2:
  
 
window.onload = function() {
 
window.onload = function() {
    alert('hi');
+
var googlediv = document.getElementById('googlecal');
    var links = document.getElementsByTagName('a');
+
if (googlediv == null) return;
    for(var i = 0; i < links.length; ++i) {
+
for(var link = googlediv.firstChild; link != null; link = link.nextSibling) {
var link = links[i];
+
if(link.nodeType != 1) continue;
if(link.getAttribute('href') == "http://www.google.com/calendar/embed?src=davefancella.com_vlfi4psoqnf7ff07vlpdl6dmdk%40group.calendar.google.com") {
+
if(link.nodeName != 'a' && link.nodeName != 'A') continue;
var iframe = document.createElement('iframe');
+
var iframe = document.createElement('iframe');
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.setAttribute('style', 'width:100%; height:40em;');
+
iframe.style.width = '100%';
link.parentNode.replaceChild(iframe, link);
+
iframe.style.height = '50em';
break;
+
googlediv.replaceChild(iframe, link);
}
+
break;
    }
+
}
 
}
 
}

Latest revision as of 02:55, 16 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 = '100%';
		iframe.style.height = '50em';
		googlediv.replaceChild(iframe, link);
		break;
	}
}