ytDownloader/utils/popups.js

13 lines
286 B
JavaScript
Raw Normal View History

2025-02-08 21:53:58 +03:00
// Popup message
function showPopup(text) {
console.log("Triggered showpopup");
getId("popupText").textContent = text;
getId("popupText").style.display = "inline-block";
setTimeout(() => {
getId("popupText").style.display = "none";
}, 2200);
}
module.exports = {
showPopup
}