mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
ensure numbers are properly rendered in Arabic
This commit is contained in:
parent
833f6f5220
commit
852e170586
1 changed files with 2 additions and 2 deletions
|
|
@ -81,7 +81,7 @@ var renderStats = function() {
|
|||
'<span class="dim"> ',
|
||||
or,
|
||||
' ',
|
||||
(blocked * 100 / total).toFixed(0),
|
||||
formatNumber(Math.floor(blocked * 100 / total)),
|
||||
'%</span>'
|
||||
);
|
||||
}
|
||||
|
|
@ -98,7 +98,7 @@ var renderStats = function() {
|
|||
'<span class="dim"> ',
|
||||
or,
|
||||
' ',
|
||||
(blocked * 100 / total).toFixed(0),
|
||||
formatNumber(Math.floor(blocked * 100 / total)),
|
||||
'%</span>'
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue