RS07 Poll Rounding

Fixes rounding errors (upwards), on RS07 polls

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        RS07 Poll Rounding
// @namespace   rs07pr
// @description Fixes rounding errors (upwards), on RS07 polls
// @name        RS07 Poll Rounding
// @include     http://services.runescape.com/m=poll/oldschool/results.ws?id=*
// @version     1
// @grant       none
// ==/UserScript==

$('fieldset').each(
  function() {
    
    table = $(this)[0].getElementsByTagName('table')[0];
    yes   = table.getElementsByTagName('tr')[0].getElementsByTagName('td')[2];
    no    = table.getElementsByTagName('tr')[1].getElementsByTagName('td')[2];
    
    votes_yes   = parseInt(yes.textContent.match(/^\d+% \((\d+) votes\)$/)[1]);
    votes_no    = parseInt(no.textContent.match(/^\d+% \((\d+) votes\)$/)[1]);
    votes_total = votes_yes + votes_no;
    
    votes_yes_pct = ((votes_yes / votes_total) * 100).toFixed(2);
    votes_no_pct  = (100 - votes_yes_pct).toFixed(2);
    
    pass_color = (votes_yes_pct >= 75) ? "green" : "red";
    pass_votes = Math.ceil(votes_total * .75);
    passing_by = Math.abs(pass_votes - votes_yes);
    
    yes.innerHTML = votes_yes_pct + "% (" + numberWithCommas(votes_yes) + " votes)\n[" + "<span style=color:" + pass_color + ";><b>" + numberWithCommas(passing_by) + "</b></span>" + "]";
    no.innerHTML  = votes_no_pct + "% (" + numberWithCommas(votes_no) + " votes)";
    
  }
);

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}