diff options
author | moisseev <moiseev@mezonplus.ru> | 2020-02-02 20:35:38 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2020-02-02 20:35:38 +0300 |
commit | e621411215b44131e4811b8169a96d68c008f35e (patch) | |
tree | 335de4cb20fa9d7ee1796186edf124212da55d6e /interface/js/app | |
parent | e438ca71328ff9441cdedd4a46408359142334c0 (diff) | |
download | rspamd-e621411215b44131e4811b8169a96d68c008f35e.tar.gz rspamd-e621411215b44131e4811b8169a96d68c008f35e.zip |
[Minor] Format numbers with d3.format,
remove Humanize JS library.
Diffstat (limited to 'interface/js/app')
-rw-r--r-- | interface/js/app/history.js | 10 | ||||
-rw-r--r-- | interface/js/app/stats.js | 10 |
2 files changed, 11 insertions, 9 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index a7d656f27..1bee39543 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -22,10 +22,10 @@ THE SOFTWARE. */ -/* global FooTable:false */ +/* global d3:false FooTable:false */ -define(["jquery", "footable", "humanize"], - function ($, _, Humanize) { +define(["jquery", "footable"], + function ($) { "use strict"; var ui = {}; var prevVersion = null; @@ -157,7 +157,7 @@ define(["jquery", "footable", "humanize"], "font-size": "11px", "minwidth": 50, }, - formatter: Humanize.compactInteger + formatter: d3.format(".3~s") }, { name: "time_real", title: "Scan time", @@ -245,7 +245,7 @@ define(["jquery", "footable", "humanize"], "width": 120, "maxWidth": 120 }, - formatter: Humanize.compactInteger + formatter: d3.format(".3~s") }, { name: "scan_time", title: "Scan time", diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index c7b0228c0..5cce2ecb9 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -22,8 +22,10 @@ THE SOFTWARE. */ -define(["jquery", "d3pie", "humanize"], - function ($, d3pie, Humanize) { +/* global d3:false */ + +define(["jquery", "d3pie"], + function ($) { "use strict"; // @ ms to date function msToTime(seconds) { @@ -77,9 +79,9 @@ define(["jquery", "d3pie", "humanize"], "</strong>" + i + "</div>"; $(widget).appendTo(widgets); } else { - var titleAtt = Humanize.intComma(item) + " " + i; + var titleAtt = d3.format(",")(item) + " " + i; widget = "<li class=\"stat-box\"><div class=\"widget\" title=\"" + titleAtt + "\"><strong>" + - Humanize.compactInteger(item) + "</strong>" + i + "</div></li>"; + d3.format(".3~s")(item) + "</strong>" + i + "</div></li>"; if (i === "scanned") { stat_w[0] = widget; } else if (i === "clean") { |