Yükleniyor...
`); popupWindow.document.close(); // Node’u popup’a taşı const moveNode = setInterval(() => { try { if (!popupWindow || popupWindow.closed) return clearInterval(moveNode); const holder = popupWindow.document.getElementById('holder'); if (!holder) return; const adopted = popupWindow.document.adoptNode(currentPlayer); adopted.style.width = '100%'; adopted.style.height = '100%'; holder.appendChild(adopted); clearInterval(moveNode); } catch(e) {} }, 150); popupWindow.onbeforeunload = function() { clearPlayer(); const info = videos[currentIndex]; playMedia(info.type, info.src, info.title); }; } popupBtn.addEventListener('click', openPopup);
Web hosting by Somee.com