diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-06 10:42:06 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-06 10:42:06 +0300 |
commit | 6d9ad2208ed221ba143525cbdfc692983a952e24 (patch) | |
tree | fd3244536f8461c4e855f8c538df449f483404b4 /interface/js/app/history.js | |
parent | d3c4028f4da8e84ffb54198d42637778a3becb69 (diff) | |
download | rspamd-6d9ad2208ed221ba143525cbdfc692983a952e24.tar.gz rspamd-6d9ad2208ed221ba143525cbdfc692983a952e24.zip |
[WebUI] Remove unused variables
Diffstat (limited to 'interface/js/app/history.js')
-rw-r--r-- | interface/js/app/history.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index b6399894a..e89108185 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -683,7 +683,7 @@ define(["jquery", "footable", "humanize"], ft.errors = undefined; } if (checked_server === "All SERVERS") { - rspamd.queryNeighbours("errors", function (data) { + rspamd.queryNeighbours("errors", function () { interface.getHistory(rspamd, tables, neighbours, checked_server); interface.getErrors(rspamd, tables, neighbours, checked_server); }); @@ -779,7 +779,6 @@ define(["jquery", "footable", "humanize"], }); }; - interface.setup = function (rspamd, tables) { - }; + interface.setup = function () {}; return interface; }); |