blob: 4532fbaf73c15065c19538e1685b7b283e4d3e07 (
plain)
1
2
3
4
5
6
7
|
if (/iP(hone|od|ad)/.test(navigator.userAgent)) {
const alertDiv = document.getElementById('alert');
alertDiv.textContent = "iOS does not support browser OGG streaming";
alertDiv.style.color = "#FF0000";
alertDiv.style.fontWeight = "normal";
alertDiv.style.display = "block";
}
|