User:Svip/monobook.js

From The Infosphere, the Futurama Wiki
< User:Svip
Revision as of 20:26, 20 April 2009 by Svip (talk | contribs) (Unfortunately, I still need a way to obtain the current amount. :S)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.
function updateDonationNotice() {
  if(!document.getElementById("donation-progress-number"))
    return;
  var number = document.getElementById("donation-progress-number");
  var bar = document.getElementById("donation-progress-indicator");
  var barWidth = 200;
  var topAmount = 500;
  var currentAmount = 10;
  var nowWidth = (currentAmount/topAmount)*barWidth;
  number.innerHTML = number;
  bar.style.width = nowWidth + "px";
}

addOnloadHook(updateDonationNotice);