User:Svip/common.js

From The Infosphere, the Futurama Wiki
< User:Svip
Revision as of 15:16, 18 January 2012 by Svip (talk | contribs)
Jump to navigation Jump to search

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: Press Ctrl-F5.
addOnloadHook(function() {
  var blackout = document.createElement('div');
  blackout.setAttribute('style', 'position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; color: #fff; text-align: center;');
  var h1 = document.createElement('h1');
  h1.setAttribute('style', 'text-decoration: line-through;');
  h1.appendChild(document.createTextNode('The Infosphere'));
  var p = document.createElement('p');
  p.appendChild(document.createTextNode('There are currently pending legislation in the U.S. Congress (SOPA and PIPA) that would severely damage the freedom of the Internet, and would also hurt the independence of The Infosphere.'));
  var p2 = document.createElement('p');
  p2.appendChild(document.createTextNode('This legislation could at best force us to block access from American origin to avoid possible censorship of our site.'));
  var p3 = document.createElement('p');
  p3.appendChild(document.createTextNode('If you are a U.S. citizen, write your Congressman.  Tell them that truly beneficial sites like this could be severely limited or entirely removed by the pending legislation.'));
  var a = document.createElement('a');
  a.setAttribute('href', 'http://sopastrike.com');
  a.appendChild(document.createTextNode('Learn more.'));
  blackout.appendChild(h1);
  blackout.appendChild(p);
  blackout.appendChild(p2);
  blackout.appendChild(p3);
  blackout.appendChild(a);
});