]> source.dussan.org Git - rspamd.git/commitdiff
[WebUI] Add missed declarations
authorAlexander Moisseev <moiseev@mezonplus.ru>
Sun, 8 Jul 2018 09:01:18 +0000 (12:01 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Sun, 8 Jul 2018 09:01:18 +0000 (12:01 +0300)
interface/js/app/history.js
interface/js/app/stats.js

index 4a8cddb0c335b950d77d637ea185eba2d51f2077..be2471c57fbc67b39887b22b3b95decafd07e2b2 100644 (file)
@@ -39,13 +39,13 @@ define(["jquery", "footable", "humanize"],
         var htmlEscaper = /[&<>"'/`=]/g;
         var symbolDescriptions = {};
 
-        EscapeHTML = function (string) {
+        var EscapeHTML = function (string) {
             return ("" + string).replace(htmlEscaper, function (match) {
                 return htmlEscapes[match];
             });
         };
 
-        escape_HTML_array = function (arr) {
+        var escape_HTML_array = function (arr) {
             arr.forEach(function (d, i) { arr[i] = EscapeHTML(d); });
         };
 
index c75b204410015303458e67b63bb4b0ed0214f611..a074d47f82c9df9f5e7323c0bb9f607b853d138f 100644 (file)
@@ -27,12 +27,13 @@ define(["jquery", "d3pie", "humanize"],
     // @ ms to date
         function msToTime(seconds) {
             /* eslint-disable no-bitwise */
-            years = seconds / 31536000 >> 0; // 3600*24*365
-            months = seconds % 31536000 / 2628000 >> 0; // 3600*24*365/12
-            days = seconds % 31536000 % 2628000 / 86400 >> 0; // 24*3600
-            hours = seconds % 31536000 % 2628000 % 86400 / 3600 >> 0;
-            minutes = seconds % 31536000 % 2628000 % 86400 % 3600 / 60 >> 0;
+            var years = seconds / 31536000 >> 0; // 3600*24*365
+            var months = seconds % 31536000 / 2628000 >> 0; // 3600*24*365/12
+            var days = seconds % 31536000 % 2628000 / 86400 >> 0; // 24*3600
+            var hours = seconds % 31536000 % 2628000 % 86400 / 3600 >> 0;
+            var minutes = seconds % 31536000 % 2628000 % 86400 % 3600 / 60 >> 0;
             /* eslint-enable no-bitwise */
+            var out;
             if (years > 0) {
                 if (months > 0) {
                     out = years + "yr " + months + "mth";