Only apply farm_theme_map_collapse JS behavior to fieldsets that contain a map.

This commit is contained in:
Michael Stenta 2020-06-26 10:07:02 -04:00
parent e92be80c33
commit b77da615a4
1 changed files with 9 additions and 7 deletions

View File

@ -5,13 +5,15 @@
// If a map is inside a collapsed fieldset, update the map size when the
// fieldset is expanded.
$('fieldset.collapsible', context).once('map-collapse', function (index, element) {
$(element).on('shown.bs.collapse', function () {
var mapId = $('.farm-map', element).attr('id');
var index = farmOS.map.targetIndex(mapId);
if (index !== -1) {
farmOS.map.instances[index].map.updateSize();
}
});
if ($('.farm-map', element).length) {
$(element).on('shown.bs.collapse', function () {
var mapId = $('.farm-map', element).attr('id');
var index = farmOS.map.targetIndex(mapId);
if (index !== -1) {
farmOS.map.instances[index].map.updateSize();
}
});
}
});
},
};