]> source.dussan.org Git - rspamd.git/commitdiff
[WebUI] Stop using "const" declaration 2319/head
authorAlexander Moisseev <moiseev@mezonplus.ru>
Mon, 2 Jul 2018 10:26:52 +0000 (13:26 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Mon, 2 Jul 2018 10:26:52 +0000 (13:26 +0300)
as it is not compatible with ES5

interface/js/app/graph.js
interface/js/app/history.js
interface/js/app/rspamd.js

index 9ae6a92974c6f980ddebbc4ac1d75fae823733f8..20fa36f53876ef9b97b3e96262cddaa9e8c2102f 100644 (file)
@@ -175,7 +175,7 @@ function($, D3Evolution, unused) {
             // Autoranging
             var scaleFactor = 1;
             var unit = "msg/s";
-            const yMax = d3.max(d3.merge(data), function (d) { return d.y; });
+            var yMax = d3.max(d3.merge(data), function (d) { return d.y; });
             if (yMax < 1) {
                 scaleFactor = 60;
                 unit = "msg/min";
index 3c62983ad6765e62c04a1decfbbc52726bf8a5ed..fbae279596462eeccdf76595cdcb993f80d2ec61 100644 (file)
@@ -115,7 +115,7 @@ function($, _, Humanize) {
 
     function process_history_v2(data) {
         // Display no more than rcpt_lim recipients
-        const rcpt_lim = 3;
+        var rcpt_lim = 3;
         var items = [];
 
         function getSelector(id) {
@@ -133,7 +133,7 @@ function($, _, Humanize) {
         $.each(data.rows,
           function (i, item) {
             function more(p) {
-                const l = item[p].length;
+                var l = item[p].length;
                 return (l > rcpt_lim) ? " … (" + l + ")" : "";
             }
             function format_rcpt(smtp, mime) {
@@ -556,7 +556,7 @@ function($, _, Humanize) {
         if (checked_server === "All SERVERS") {
             rspamd.queryNeighbours("history", function (req_data) {
                 function differentVersions() {
-                    const dv = neighbours_data.some(function (e) {
+                    var dv = neighbours_data.some(function (e) {
                         return e.version !== neighbours_data[0].version;
                     });
                     if (dv) {
index 1b90cb27eb951a32e1ab467ea19531b825ef5a06..120f746c44d543189c26df55d1974bf18faa8f57 100644 (file)
@@ -165,7 +165,7 @@ define(['jquery', 'd3pie', 'visibility', 'app/stats', 'app/graph', 'app/config',
         }
 
         function alertMessage(alertClass, alertText) {
-            const a = $('<div class="alert ' + alertClass + ' alert-dismissible fade in show">' +
+            var a = $('<div class="alert ' + alertClass + ' alert-dismissible fade in show">' +
                 '<button type="button" class="close" data-dismiss="alert" title="Dismiss">&times;</button>' +
                 '<strong>' + alertText + '</strong>');
             $('.notification-area').append(a);