commit 27cea48: [Minor] Use existing constant
moisseev
moiseev at mezonplus.ru
Mon Apr 18 20:14:03 UTC 2022
Author: moisseev
Date: 2022-04-18 17:44:12 +0300
URL: https://github.com/rspamd/rspamd/commit/27cea48502b50c4ed8f9f56ed7daeecbb80e9ebf
[Minor] Use existing constant
---
interface/js/app/rspamd.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js
index 0fe64ecb6..a8a904fd3 100644
--- a/interface/js/app/rspamd.js
+++ b/interface/js/app/rspamd.js
@@ -409,7 +409,7 @@ function ($, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_config,
(function initSettings() {
var selected_locale = null;
var custom_locale = null;
- var localeTextbox = ".popover #settings-popover #locale";
+ const localeTextbox = ".popover #settings-popover #locale";
function validateLocale(saveToLocalStorage) {
function toggle_form_group_class(remove, add) {
@@ -472,7 +472,7 @@ function ($, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_config,
localStorage.setItem("selected_locale", selected_locale);
validateLocale();
});
- $(document).on("input", ".popover #settings-popover #locale", function () {
+ $(document).on("input", localeTextbox, function () {
custom_locale = $(localeTextbox).val();
validateLocale(true);
});
More information about the Commits
mailing list