From 28cc2ed5fb4ed26649d4fa2f8eae25a3449f6b5a Mon Sep 17 00:00:00 2001 From: moisseev Date: Sun, 3 Dec 2023 17:03:39 +0300 Subject: [Minor] Use single quotes rather than escapes --- interface/js/app/symbols.js | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'interface') diff --git a/interface/js/app/symbols.js b/interface/js/app/symbols.js index d35715188..fdc31f3e6 100644 --- a/interface/js/app/symbols.js +++ b/interface/js/app/symbols.js @@ -30,7 +30,7 @@ define(["jquery", "app/rspamd", "footable"], const ui = {}; function saveSymbols(action, id, server) { - const inputs = $("#" + id + " :input[data-role=\"numerictextbox\"]"); + const inputs = $("#" + id + ' :input[data-role="numerictextbox"]'); const url = action; const values = []; $(inputs).each(function () { @@ -75,10 +75,9 @@ define(["jquery", "app/rspamd", "footable"], } else if (item.weight > 0) { label_class = "scorebar-spam"; } - item.weight = ""; + item.weight = ''; if (!item.time) { item.time = 0; } @@ -93,12 +92,10 @@ define(["jquery", "app/rspamd", "footable"], distinct_groups.push(item.group); } item.save = - " " + - ""; + ' ' + + ''; items.push(item); }); }); -- cgit v1.2.3