HodlEye_Crypto_Price_Tracker/public/script.js
Gerald Hasani aed13bfcd6 Update 1.0.8
Adding Tradingview chart display loaded when you click on the respective cryptocurrencies
2025-03-11 10:48:25 +01:00

10 lines
215 B
JavaScript

document.querySelectorAll('.modal').forEach(modal => {
modal.addEventListener('click', function(event) {
if (event.target === modal) {
modal.style.display = 'none';
}
});
});