Skip to content

Commit

Permalink
Rounding Power Used in Graph
Browse files Browse the repository at this point in the history
  • Loading branch information
burnin committed Sep 5, 2016
1 parent 4e2e912 commit 1904507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/steemplots.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ function getSteemPlotter(calculator, callback) {
y.push((voting_power / 100).toFixed(2));
new_y.push((new_voting_power / 100).toFixed(2));

power_y.push(used_power);
new_power_y.push(new_used_power);
power_y.push(used_power.toFixed(2));
new_power_y.push(new_used_power.toFixed(2));

text.push(vote.authorperm);
total_power_spent += used_power;
Expand Down

0 comments on commit 1904507

Please sign in to comment.