diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-05 10:20:15 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2018-07-05 10:20:15 +0300 |
commit | 104eebf96028fd7bfee37fec077c6a5346304673 (patch) | |
tree | 0535bd18b17288473f05319ee0d5dbebe9eca0dc | |
parent | dc72c1eebe1855939e6507d53be0d69fb9042469 (diff) | |
download | rspamd-104eebf96028fd7bfee37fec077c6a5346304673.tar.gz rspamd-104eebf96028fd7bfee37fec077c6a5346304673.zip |
[Minor] JS: Disable "no-alert" rule for a line
-rw-r--r-- | interface/js/app/history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 2d8c739fb..a30a2e54b 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -673,7 +673,7 @@ define(["jquery", "footable", "humanize"], $("#resetHistory").off("click"); $("#resetHistory").on("click", function (e) { e.preventDefault(); - if (!confirm("Are you sure you want to reset history log?")) { + if (!confirm("Are you sure you want to reset history log?")) { // eslint-disable-line no-alert return; } if (ft.history) { |