From 40f43fcc5814e9f55c13c5a2f1d1efe3e874f922 Mon Sep 17 00:00:00 2001
From: Matthew Wire <mjw@mjwconsult.co.uk>
Date: Thu, 2 Sep 2021 14:16:25 +0100
Subject: [PATCH] Switch to supported sweetalert 11 method

---
 js/crm.payment.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/crm.payment.js b/js/crm.payment.js
index aace675..5b4b9cf 100644
--- a/js/crm.payment.js
+++ b/js/crm.payment.js
@@ -523,7 +523,7 @@
     swalFire: function(parameters, scrollToElement, fallBackToAlert) {
       if (typeof Swal === 'function') {
         if (scrollToElement.length > 0) {
-          parameters.onAfterClose = function() { window.scrollTo($(scrollToElement).position()); };
+          parameters.didClose = function() { window.scrollTo($(scrollToElement).position()); };
         }
         Swal.fire(parameters);
       }
-- 
GitLab