Skip to content

Commit

Permalink
ensure numbers are properly rendered in Arabic
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Sep 5, 2014
1 parent 833f6f5 commit 852e170
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var renderStats = function() {
'<span class="dim">&nbsp;',
or,
'&nbsp;',
(blocked * 100 / total).toFixed(0),
formatNumber(Math.floor(blocked * 100 / total)),
'%</span>'
);
}
Expand All @@ -98,7 +98,7 @@ var renderStats = function() {
'<span class="dim">&nbsp;',
or,
'&nbsp;',
(blocked * 100 / total).toFixed(0),
formatNumber(Math.floor(blocked * 100 / total)),
'%</span>'
);
}
Expand Down

0 comments on commit 852e170

Please sign in to comment.