Difference between revisions of "MediaWiki:Common.js"

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