1
0
Fork 0

whitespace

This commit is contained in:
Jan Steemann 2015-05-18 12:18:08 +02:00
parent 82199b1d71
commit cc98799a97
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ function percentChange2 (current, prev, section, src1, src2) {
var p = prev[section][src1] - prev[section][src2];
if (p !== 0) {
return (current[section][src1] -current[section][src2] - p) / p;
return (current[section][src1] - current[section][src2] - p) / p;
}
return 0;