Skip to content

Commit

Permalink
Marketing
Browse files Browse the repository at this point in the history
  • Loading branch information
Patricio Bruna committed Mar 26, 2013
1 parent 4e66555 commit bdc91da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/app.js
Expand Up @@ -235,7 +235,7 @@ function calc_average_value(metric) {
function metric_per_second(metric) {
var divider = App.refreshTime / 1000;
var value = delta_new_old_value(metric);
result = value / divider;
result = Math.round(value / divider);
return result;
}

Expand Down

0 comments on commit bdc91da

Please sign in to comment.