1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

code review

This commit is contained in:
gorhill 2015-03-09 20:04:07 -04:00
parent f362dff643
commit cad5a6cbf6

View File

@ -63,7 +63,7 @@ vAPI.i18n.renderElapsedTimeToString = function(tstamp) {
if ( value < 2 ) {
return vAPI.i18n('elapsedOneHourAgo');
}
if ( value < (24 * 60) ) {
if ( value < 24 ) {
return vAPI.i18n('elapsedManyHoursAgo').replace('{{value}}', Math.floor(value).toLocaleString());
}
value /= 24;