MediaWiki:Common.js

From Armagetron
Revision as of 18:45, 15 March 2007 by Wrtlprnft (talk | contribs) (new version of the script)

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */

window.onload = function() {
	var googlediv = document.getElementById('googlecal');
	for(var link = googlediv.firstChild; link != null; link = link.nextSibling) {
		if(link.nodeType != 1) continue;
		if(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 = googlediv.style.height;
		googlediv.replaceChild(iframe, link);
		break;
	}
}