From f1a944d51beb84d60013977b04f74c522f0e34e0 Mon Sep 17 00:00:00 2001 From: colemanw Date: Sun, 3 Sep 2023 08:22:07 -0400 Subject: [PATCH] ajax.js - Fix undeclared variable --- js/crm.ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/crm.ajax.js b/js/crm.ajax.js index 7478709d91..ecd7c73c5e 100644 --- a/js/crm.ajax.js +++ b/js/crm.ajax.js @@ -304,7 +304,7 @@ }, refresh: function() { var that = this, - hash = this.options.url.split('#')[1]; + hash = this.options.url.split('#')[1], url = this._formatUrl(this.options.url, 'json'); $(this.element).data('urlHash', hash); if (this.options.crmForm) $('form', this.element).ajaxFormUnbind(); -- 2.25.1