MediaWiki:Common.js

From Armagetron
Revision as of 18:23, 15 March 2007 by Wrtlprnft (talk | contribs) (more testing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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. */

document.onload = function() {
    var links = document.getElementsByTagName('a');
    for(var i = 0; i < links.length; ++i) {
		var link = links[i];
		if(link.getAttribute('href') == "http://www.google.com/calendar/embed?src=davefancella.com_vlfi4psoqnf7ff07vlpdl6dmdk%40group.calendar.google.com") {
			var iframe = document.createElement('iframe');
			iframe.setAttribute('src', "http://www.google.com/calendar/embed?src=davefancella.com_vlfi4psoqnf7ff07vlpdl6dmdk%40group.calendar.google.com");
			iframe.setAttribute('style', 'width:100%; height:40em;');
			link.parentNode.replaceChild(iframe, link);
			break;
		}
    }
}