Browse Source

[Minor] Do not reassign function parameters

tags/1.7.9
Alexander Moisseev 5 years ago
parent
commit
89bfbd940c
2 changed files with 5 additions and 6 deletions
  1. 0
    2
      .eslintrc.json
  2. 5
    4
      interface/js/app/rspamd.js

+ 0
- 2
.eslintrc.json View File

@@ -49,7 +49,6 @@
// Temporarily disabled rules
"array-callback-return": "off",
"array-element-newline": "off",
"block-scoped-var": "off",
"brace-style": "off",
"callback-return": "off",
"consistent-return": "off",
@@ -74,7 +73,6 @@
"no-invalid-this": "off",
"no-loop-func": "off",
"no-negated-condition": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"one-var-declaration-per-line": "off",

+ 5
- 4
interface/js/app/rspamd.js View File

@@ -79,7 +79,8 @@ function ($, d3pie, visibility, tab_stat, tab_graph, tab_config,
ui.connect();
}

function tabClick(tab_id) {
function tabClick(id) {
var tab_id = id;
if ($(tab_id).attr("disabled")) return;
$(tab_id).attr("disabled", true);

@@ -387,9 +388,8 @@ function ($, d3pie, visibility, tab_stat, tab_graph, tab_config,
});
});
$.each(neighbours_status, function (ind) {
method = typeof method !== "undefined" ? method : "GET";
var req_params = {
type: method,
type: typeof method !== "undefined" ? method : "GET",
jsonp: false,
data: req_data,
beforeSend: function (xhr) {
@@ -457,7 +457,8 @@ function ($, d3pie, visibility, tab_stat, tab_graph, tab_config,
});
};

ui.drawPie = function (obj, id, data, conf) {
ui.drawPie = function (object, id, data, conf) {
var obj = object;
if (obj) {
obj.updateProp("data.content",
data.filter(function (elt) {

Loading…
Cancel
Save