From e443b72393d6532fef190b9ebfb413915809c429 Mon Sep 17 00:00:00 2001 From: PranavAwasthi Date: Tue, 18 Jun 2024 14:31:33 +0530 Subject: [PATCH] Fix contact tab UI and behaviour --- js/qsm-admin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/qsm-admin.js b/js/qsm-admin.js index 7d5004b2f..a6f76188a 100644 --- a/js/qsm-admin.js +++ b/js/qsm-admin.js @@ -4123,14 +4123,14 @@ var import_button; var $popups = $('.qsm-contact-form-field-settings'); // Function to hide all popups - function hideAllPopups() { + function qsmHideAllPopups() { $popups.hide(); } // Close popup on document click if popup is open and clicking outside $(document).on('click', function(event) { if (!$settingsFields.is(event.target) && $settingsFields.has(event.target).length === 0) { - hideAllPopups(); + qsmHideAllPopups(); } });