From: Alexander Moisseev Date: Tue, 3 Jul 2018 10:34:38 +0000 (+0300) Subject: [Minor] JS: Add missed semicolons X-Git-Tag: 1.7.8~44^2~9 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1a9489fdd5a1577d62dd0793959c31968a3e1a38;p=rspamd.git [Minor] JS: Add missed semicolons --- diff --git a/interface/js/app/config.js b/interface/js/app/config.js index cb8fb0c75..36377f5bf 100644 --- a/interface/js/app/config.js +++ b/interface/js/app/config.js @@ -24,7 +24,7 @@ define(["jquery"], function($) { - var interface = {} + var interface = {}; function save_map_success(rspamd) { rspamd.alertMessage("alert-modal alert-success", "Map data successfully saved"); @@ -51,14 +51,14 @@ define(["jquery"], error: function (data) { save_map_error(rspamd, "local", null, null, data.statusText); }, - success: function() {save_map_success(rspamd)}, + success: function() {save_map_success(rspamd);}, }); } // @get maps id function getMaps(rspamd) { var items = []; - var $listmaps = $("#listMaps") + var $listmaps = $("#listMaps"); $listmaps.closest(".widget-box").hide(); $.ajax({ dataType: "json", @@ -275,7 +275,7 @@ define(["jquery"], dataType: "text", }); }); - } + }; interface.getActions = getActions; interface.getMaps = getMaps; diff --git a/interface/js/app/graph.js b/interface/js/app/graph.js index 9bffd2dad..46231bc1f 100644 --- a/interface/js/app/graph.js +++ b/interface/js/app/graph.js @@ -212,7 +212,7 @@ define(["jquery", "d3evolution", "footable"], if (checked_server === "All SERVERS") { rspamd.queryNeighbours("graph", function (req_data) { var neighbours_data = req_data - .filter(function (d) { return d.status }) // filter out unavailable neighbours + .filter(function (d) { return d.status; }) // filter out unavailable neighbours .map(function (d){ return d.data; }); if (neighbours_data.length > 1) { diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 8bef4d226..02616ad13 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -46,7 +46,7 @@ define(["jquery", "footable", "humanize"], }; escape_HTML_array = function (arr) { - arr.forEach(function (d, i) { arr[i] = EscapeHTML(d) }); + arr.forEach(function (d, i) { arr[i] = EscapeHTML(d); }); }; function unix_time_format(tm) { @@ -233,7 +233,7 @@ define(["jquery", "footable", "humanize"], } }; - items.push(item) + items.push(item); }); return items; @@ -551,7 +551,7 @@ define(["jquery", "footable", "humanize"], "title": description }); }); - } + }; if (checked_server === "All SERVERS") { rspamd.queryNeighbours("history", function (req_data) { @@ -567,7 +567,7 @@ define(["jquery", "footable", "humanize"], } var neighbours_data = req_data - .filter(function (d) { return d.status }) // filter out unavailable neighbours + .filter(function (d) { return d.status; }) // filter out unavailable neighbours .map(function (d){ return d.data; }); if (neighbours_data.length && !differentVersions()) { var data = {}; @@ -766,7 +766,7 @@ define(["jquery", "footable", "humanize"], rspamd.queryNeighbours("errors", function (req_data) { var neighbours_data = req_data .filter(function (d) { - return d.status + return d.status; }) // filter out unavailable neighbours .map(function (d) { return d.data; diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js index 5c31d1aca..d1ae28331 100644 --- a/interface/js/app/rspamd.js +++ b/interface/js/app/rspamd.js @@ -351,7 +351,7 @@ function ($, d3pie, visibility, tab_stat, tab_graph, tab_config, }); } $.ajax(req_params); - } + }; interface.queryNeighbours = function(req_url, on_success, on_error, method, headers, params, req_data) { $.ajax({ diff --git a/interface/js/app/symbols.js b/interface/js/app/symbols.js index 8d10294fa..66cbc4cf1 100644 --- a/interface/js/app/symbols.js +++ b/interface/js/app/symbols.js @@ -24,8 +24,8 @@ define(["jquery", "footable"], function($) { - var interface = {} - var ft = {} + var interface = {}; + var ft = {}; function saveSymbols(rspamd, action, id, is_cluster) { var inputs = $("#" + id + " :input[data-role=\"numerictextbox\"]"); @@ -90,7 +90,7 @@ define(["jquery", "footable"], if (item.weight > max) { max = item.weight * 2; } - item.group = group.group + item.group = group.group; if (item.weight < min) { min = item.weight * 2; } @@ -105,23 +105,23 @@ define(["jquery", "footable"], min + "\" max=\"" + max + "\" step=\"" + decimalStep(item.weight) + "\" tabindex=\"1\" value=\"" + Number(item.weight).toFixed(3) + - "\" id=\"_sym_" + item.symbol + "\">" + "\" id=\"_sym_" + item.symbol + "\">"; if (!item.time) { item.time = 0; } - item.time = Number(item.time).toFixed(2) + "s" + item.time = Number(item.time).toFixed(2) + "s"; if (!item.frequency) { item.frequency = 0; } freqs.push(item.frequency); - item.frequency = Number(item.frequency).toFixed(2) + item.frequency = Number(item.frequency).toFixed(2); if (!(item.group in lookup)) { lookup[item.group] = 1; distinct_groups.push(item.group); } item.save = "" + " "; - items.push(item) + items.push(item); }); }); @@ -150,7 +150,7 @@ define(["jquery", "footable"], item.frequency = item.frequency.toFixed(2); } }); - return [items, distinct_groups] + return [items, distinct_groups]; } // @get symbols into modal form interface.getSymbols = function(rspamd, tables, checked_server) { @@ -219,7 +219,7 @@ define(["jquery", "footable"], {"name":"symbol","title":"Symbol","style":{"font-size":"11px"}}, {"name":"description","title":"Description","breakpoints":"xs sm","style":{"font-size":"11px"}}, {"name":"weight","title":"Score","style":{"font-size":"11px"}}, - {"name":"frequency","title":"Frequency","breakpoints":"xs sm","style":{"font-size":"11px"},"sortValue": function(value){return Number(value).toFixed(2)}}, + {"name":"frequency","title":"Frequency","breakpoints":"xs sm","style":{"font-size":"11px"},"sortValue": function(value){return Number(value).toFixed(2);}}, {"name":"time","title":"Avg. time","breakpoints":"xs sm","style":{"font-size":"11px"}}, {"name":"save","title":"Save","style":{"font-size":"11px"}}, ], @@ -255,7 +255,7 @@ define(["jquery", "footable"], }); $(document).on("click", "#symbolsTable :button", function(event){ var value = $(this).data("save"); - if (!value) return + if (!value) return; saveSymbols(rspamd, "./savesymbols", "symbolsTable", value == "cluster"); }); }; diff --git a/interface/js/app/upload.js b/interface/js/app/upload.js index 05b47e82d..8a5457a6f 100644 --- a/interface/js/app/upload.js +++ b/interface/js/app/upload.js @@ -24,7 +24,7 @@ define(["jquery"], function($) { - var interface = {} + var interface = {}; function cleanTextUpload(source) { $("#" + source + "TextSource").val("");