diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-05 10:33:15 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-05 10:33:15 +0300 |
commit | 6ad2458e0806c3a17b25ca8ce2549697f8d3727e (patch) | |
tree | 0e48d5a27a71c404bd83b7961cb7237e5a8a5994 /interface | |
parent | bef501cdf7c5239f082a2456043fcb0e982c8049 (diff) | |
download | rspamd-6ad2458e0806c3a17b25ca8ce2549697f8d3727e.tar.gz rspamd-6ad2458e0806c3a17b25ca8ce2549697f8d3727e.zip |
[Minor] JS: Remove useless concatenation
Diffstat (limited to 'interface')
-rw-r--r-- | interface/js/app/history.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index a17c237ba..e11ec7dca 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -158,12 +158,12 @@ define(["jquery", "footable", "humanize"], var sym = item.symbols[key]; if (sym.description) { - var str = "<strong><abbr data-sym-key=\"" + key + "\">" + sym.name + "</abbr></strong>" + "(" + sym.score + ")"; + var str = "<strong><abbr data-sym-key=\"" + key + "\">" + sym.name + "</abbr></strong>(" + sym.score + ")"; // Store description for tooltip symbolDescriptions[key] = sym.description; } else { - var str = "<strong>" + sym.name + "</strong>" + "(" + sym.score + ")"; + var str = "<strong>" + sym.name + "</strong>(" + sym.score + ")"; } if (sym.options) { |