Change bar to show totals in a different way.
The achieved! text is removed, to just show the total Supporters, and the middle part is how many more we need right now.
This commit is contained in:
parent
093f131738
commit
99ff4771a1
1 changed files with 4 additions and 2 deletions
|
@ -34,15 +34,17 @@ $(document).ready(function() {
|
||||||
if (noCommaSiteSoFar >= noCommaSiteMiddleGoal) {
|
if (noCommaSiteSoFar >= noCommaSiteMiddleGoal) {
|
||||||
// We've got
|
// We've got
|
||||||
var moreCount = noCommaSiteSoFar - noCommaSiteMiddleGoal;
|
var moreCount = noCommaSiteSoFar - noCommaSiteMiddleGoal;
|
||||||
|
var leftOver = noCommaMatchFinalGoal - (moreCount + 750 + noCommaSiteMatchCount);
|
||||||
|
|
||||||
moreCount = moreCount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
moreCount = moreCount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
||||||
$('#siteprogressbar').
|
$('#siteprogressbar').
|
||||||
multiprogressbar({ parts: [
|
multiprogressbar({ parts: [
|
||||||
{ value: (noCommaSiteSoFar / noCommaSiteFinalGoal) * 100,
|
{ value: (noCommaSiteSoFar / noCommaSiteFinalGoal) * 100,
|
||||||
text: "750 achieved! " + moreCount + " beyond that have joined.",
|
text: noCommaSiteSoFar.toLocaleString() + " have joined.",
|
||||||
barClass: "progress", textClass: "soFarText" },
|
barClass: "progress", textClass: "soFarText" },
|
||||||
{ value:
|
{ value:
|
||||||
((noCommaMatchFinalGoal - noCommaSiteMiddleGoal) / noCommaSiteFinalGoal) * 100,
|
((noCommaMatchFinalGoal - noCommaSiteMiddleGoal) / noCommaSiteFinalGoal) * 100,
|
||||||
text: noCommaMatchFinalGoal.toLocaleString() + " will save license compliance work",
|
text: leftOver.toLocaleString() + " more needed to save license compliance work",
|
||||||
barClass: "final-goal", textClass: "goalText" },
|
barClass: "final-goal", textClass: "goalText" },
|
||||||
{ value: 100,
|
{ value: 100,
|
||||||
text: siteMatchCount + " matched!",
|
text: siteMatchCount + " matched!",
|
||||||
|
|
Loading…
Reference in a new issue