Commit dbe7346a by David Ormsbee

Merge pull request #1050 from MITx/bridger/feature/progress_percent_fix

Fixed redunant rounding of final grade percent, which was causing floating point weirdness.
parents b6ce46ca ba57e8a7
......@@ -90,7 +90,7 @@ $(function () {
ticks += [ [overviewBarX, "Total"] ]
tickIndex += 1 + sectionSpacer
totalScore = math.floor(grade_summary['percent'] * 100) / 100 #We floor it to the nearest percent, 80.9 won't show up like a 90 (an A)
totalScore = grade_summary['percent']
detail_tooltips['Dropped Scores'] = dropped_score_tooltips
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment