Difference between revisions of "MediaWiki:Common.js"

From Armagetron
(more fixing)
m (apparently the calendar is to be used on its own page, so I set the width to 100%)
 
(5 intermediate revisions by 2 users not shown)
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 = '100%';
 
iframe.style.width = '100%';
iframe.style.height = googlediv.style.height;
+
iframe.style.height = '50em';
 
googlediv.replaceChild(iframe, link);
 
googlediv.replaceChild(iframe, link);
 
break;
 
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;
	}
}