@bmlt-enabled/croutonjs 3.19.0 → 3.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/crouton-gmaps.js CHANGED
@@ -13352,7 +13352,7 @@ function CroutonLocalization(language) {
13352
13352
  "meeting_count": "Wöchentliche Meetings:",
13353
13353
  "venue_types": "Treffpunktarten",
13354
13354
  "venue_type_choices": {
13355
- IN_PERSON: "Präsens-Meetings",
13355
+ IN_PERSON: "Präsenz-Meetings",
13356
13356
  VIRTUAL: "Online-Meetings",
13357
13357
  },
13358
13358
  "service_body_types": {
@@ -16283,7 +16283,7 @@ function Crouton(config) {
16283
16283
  clearInterval(lock_id);
16284
16284
  callback();
16285
16285
  }
16286
- }, 100)
16286
+ }, 100);
16287
16287
  };
16288
16288
 
16289
16289
  self.dayTab = function(day_id) {
@@ -16490,7 +16490,7 @@ function Crouton(config) {
16490
16490
  callback();
16491
16491
  };
16492
16492
  self.updateMeetingCount = function(showingNow=null) {
16493
- self = this;
16493
+ var self = this;
16494
16494
  let meetingCount = self.meetingData.length;
16495
16495
  if (self.meetingCountCallback) self.meetingCountCallback(meetingCount);
16496
16496
  if (self.groupCountCallback) self.groupCountCallback(
@@ -16999,7 +16999,7 @@ Crouton.prototype.meetingModal = function(meetingId) {
16999
16999
  croutonMap.showMap(true);
17000
17000
  }
17001
17001
  Crouton.prototype.searchMap = function() {
17002
- self = this;
17002
+ var self = this;
17003
17003
  if (!self.config.map_search || typeof self.config.map_search !== 'object') {
17004
17004
  self.config.map_search = {
17005
17005
  width: -50,
@@ -17644,7 +17644,7 @@ function getUniqueFormatsOfType(array, type){
17644
17644
  },[]);
17645
17645
  }
17646
17646
  Crouton.prototype.renderMeetingCount = function() {
17647
- self = this;
17647
+ var self = this;
17648
17648
  self.lock(function() {
17649
17649
  self.updateMeetingCount()
17650
17650
  });