BluemapSimpleHidder/PlayerHidder.js

24 lines
484 B
JavaScript

(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();
window['abrete_sesamo'] = showDiv;
window['cierrate_sesamo'] = hideDiv;
})();