diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-09-15 17:29:43 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-09-15 17:29:43 +0300 |
commit | e5a73f26fd6cc2c98c53d06cc5998a913da03cc1 (patch) | |
tree | 93645e7342ded35973e20ef67ff0b3ab1ba57028 /interface/js/app/rspamd.js | |
parent | 6dd1c587ee4e02c53d0c472953dfe9ce703e801a (diff) | |
download | rspamd-e5a73f26fd6cc2c98c53d06cc5998a913da03cc1.tar.gz rspamd-e5a73f26fd6cc2c98c53d06cc5998a913da03cc1.zip |
[Minor] Require capitalized constructor names
Diffstat (limited to 'interface/js/app/rspamd.js')
-rw-r--r-- | interface/js/app/rspamd.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js index 8310ccf47..5ade66ce4 100644 --- a/interface/js/app/rspamd.js +++ b/interface/js/app/rspamd.js @@ -28,7 +28,7 @@ define(["jquery", "d3pie", "visibility", "nprogress", "app/stats", "app/graph", "app/config", "app/symbols", "app/history", "app/upload"], // eslint-disable-next-line max-params -function ($, d3pie, visibility, NProgress, tab_stat, tab_graph, tab_config, +function ($, D3pie, visibility, NProgress, tab_stat, tab_graph, tab_config, tab_symbols, tab_history, tab_upload) { "use strict"; // begin @@ -357,7 +357,7 @@ function ($, d3pie, visibility, NProgress, tab_stat, tab_graph, tab_config, }) ); } else { - obj = new d3pie(id, + obj = new D3pie(id, $.extend({}, { header: { title: { |