Skip to content

Commit

Permalink
fix rounding in gym-details (sidebar) (#1782)
Browse files Browse the repository at this point in the history
  • Loading branch information
catnet23 authored and sebastienvercammen committed Jan 29, 2017
1 parent 0f93353 commit 94dfd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -1795,7 +1795,7 @@ function showGymDetails(id) { // eslint-disable-line no-unused-vars
<div class="iv" style="width: 36px;"">
<div class="type">PERFECT</div>
<div class="value">
${perfectPercent}<span style="font-size: .6em;">%</span>
${perfectPercent.toFixed(0)}<span style="font-size: .6em;">%</span>
</div>
</div>
</div>
Expand Down

0 comments on commit 94dfd50

Please sign in to comment.