summaryrefslogtreecommitdiffstats
path: root/web_src/js/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r--web_src/js/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 16bb412f09..f5f4841410 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -1736,10 +1736,13 @@ function initOrganization() {
if ($('.organization.settings.options').length > 0) {
$('#org_name').on('keyup', function () {
const $prompt = $('#org-name-change-prompt');
+ const $prompt_redirect = $('#org-name-change-redirect-prompt');
if ($(this).val().toString().toLowerCase() !== $(this).data('org-name').toString().toLowerCase()) {
$prompt.show();
+ $prompt_redirect.show();
} else {
$prompt.hide();
+ $prompt_redirect.hide();
}
});
}
@@ -1755,10 +1758,13 @@ function initUserSettings() {
if ($('.user.settings.profile').length > 0) {
$('#username').on('keyup', function () {
const $prompt = $('#name-change-prompt');
+ const $prompt_redirect = $('#name-change-redirect-prompt');
if ($(this).val().toString().toLowerCase() !== $(this).data('name').toString().toLowerCase()) {
$prompt.show();
+ $prompt_redirect.show();
} else {
$prompt.hide();
+ $prompt_redirect.hide();
}
});
}