RS07 Poll Rounding

Fixes rounding errors (upwards), on RS07 polls

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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, ",");
}