From ef6236d3b7557672581f626fce6e0f42db2bce6b Mon Sep 17 00:00:00 2001 From: EyePulp Date: Mon, 26 Mar 2018 07:49:16 -0500 Subject: [PATCH] Provide more specific numbers on stats Use a `title` attribute on the stats widgets to show full specific values in addition to the `Humanize.compactInteger()` values. --- interface/js/app/stats.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index 377c2272c..3855f4d64 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -74,7 +74,8 @@ function($, d3pie, Humanize) { '' + i + ''; $(widget).appendTo(widgets); } else { - widget = '
  • ' + + var titleAtt = Humanize.intComma(item) + ' ' + i; + widget = '
  • ' + Humanize.compactInteger(item) + '' + i + '
  • '; if (i == 'scanned') { stat_w[0] = widget; -- 2.39.5