1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

ensure numbers are properly rendered in Arabic

This commit is contained in:
gorhill 2014-09-05 15:59:47 -04:00
parent 833f6f5220
commit 852e170586

View File

@ -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>'
);
}
@ -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>'
);
}