From 06ebfcd524b4ac261558bb420f22824cf567caee Mon Sep 17 00:00:00 2001 From: otrok7 <50595291+otrok7@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:58:27 +0100 Subject: [PATCH] bug fix throbber --- croutonjs/src/js/crouton-core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/croutonjs/src/js/crouton-core.js b/croutonjs/src/js/crouton-core.js index e193690..585c245 100644 --- a/croutonjs/src/js/crouton-core.js +++ b/croutonjs/src/js/crouton-core.js @@ -1312,7 +1312,7 @@ Crouton.prototype.render = function(doMeetingMap = false) { self.getCurrentLocation(self.showLocation); } - if (self.config['show_map'] && !self.config['refresh_map']) { + if (self.config['show_map'] && !self.config['refresh_map'] && !doMeetingMap) { croutonMap.initialize(self.createBmltMapElement(), self.meetingData); jQuery("#bmlt-map").removeClass("hide"); }