@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-core.js +5 -5
- package/crouton-core.min.js +1 -1
- package/crouton-gmaps.js +5 -5
- package/crouton-gmaps.min.js +1 -1
- package/crouton-nocore.js +1 -1
- package/crouton-nocore.min.js +1 -1
- package/crouton.js +5 -5
- package/crouton.min.js +1 -1
- package/crouton.nojquery.js +5 -5
- package/crouton.nojquery.min.js +1 -1
- package/package.json +1 -1
package/crouton-core.js
CHANGED
|
@@ -13349,7 +13349,7 @@ function CroutonLocalization(language) {
|
|
|
13349
13349
|
"meeting_count": "Wöchentliche Meetings:",
|
|
13350
13350
|
"venue_types": "Treffpunktarten",
|
|
13351
13351
|
"venue_type_choices": {
|
|
13352
|
-
IN_PERSON: "
|
|
13352
|
+
IN_PERSON: "Präsenz-Meetings",
|
|
13353
13353
|
VIRTUAL: "Online-Meetings",
|
|
13354
13354
|
},
|
|
13355
13355
|
"service_body_types": {
|
|
@@ -16280,7 +16280,7 @@ function Crouton(config) {
|
|
|
16280
16280
|
clearInterval(lock_id);
|
|
16281
16281
|
callback();
|
|
16282
16282
|
}
|
|
16283
|
-
}, 100)
|
|
16283
|
+
}, 100);
|
|
16284
16284
|
};
|
|
16285
16285
|
|
|
16286
16286
|
self.dayTab = function(day_id) {
|
|
@@ -16487,7 +16487,7 @@ function Crouton(config) {
|
|
|
16487
16487
|
callback();
|
|
16488
16488
|
};
|
|
16489
16489
|
self.updateMeetingCount = function(showingNow=null) {
|
|
16490
|
-
self = this;
|
|
16490
|
+
var self = this;
|
|
16491
16491
|
let meetingCount = self.meetingData.length;
|
|
16492
16492
|
if (self.meetingCountCallback) self.meetingCountCallback(meetingCount);
|
|
16493
16493
|
if (self.groupCountCallback) self.groupCountCallback(
|
|
@@ -16996,7 +16996,7 @@ Crouton.prototype.meetingModal = function(meetingId) {
|
|
|
16996
16996
|
croutonMap.showMap(true);
|
|
16997
16997
|
}
|
|
16998
16998
|
Crouton.prototype.searchMap = function() {
|
|
16999
|
-
self = this;
|
|
16999
|
+
var self = this;
|
|
17000
17000
|
if (!self.config.map_search || typeof self.config.map_search !== 'object') {
|
|
17001
17001
|
self.config.map_search = {
|
|
17002
17002
|
width: -50,
|
|
@@ -17641,7 +17641,7 @@ function getUniqueFormatsOfType(array, type){
|
|
|
17641
17641
|
},[]);
|
|
17642
17642
|
}
|
|
17643
17643
|
Crouton.prototype.renderMeetingCount = function() {
|
|
17644
|
-
self = this;
|
|
17644
|
+
var self = this;
|
|
17645
17645
|
self.lock(function() {
|
|
17646
17646
|
self.updateMeetingCount()
|
|
17647
17647
|
});
|