2025-05-27 23:12:40 +02:00
|
|
|
(function() {
|
|
|
|
|
const selector = '#map-container > div > div:nth-child(1)';
|
|
|
|
|
let targetDiv = null;
|
|
|
|
|
|
|
|
|
|
function hideDiv() {
|
|
|
|
|
targetDiv = document.querySelector(selector);
|
|
|
|
|
if (targetDiv) {
|
|
|
|
|
targetDiv.style.display = 'none';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showDiv() {
|
|
|
|
|
if (targetDiv) {
|
|
|
|
|
targetDiv.style.display = '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hideDiv();
|
|
|
|
|
|
|
|
|
|
|
2025-05-27 23:14:19 +02:00
|
|
|
window['abrete_sesamo'] = showDiv;
|
|
|
|
|
window['cierrate_sesamo'] = hideDiv;
|
2025-05-27 23:12:40 +02:00
|
|
|
})();
|