forked from nm3clol/nm3clol-express-app
18 lines
543 B
Plaintext
18 lines
543 B
Plaintext
<img id="no-trash-svg" alt="" src="/svg/no-trash.svg" class="no-trash-svg" onload="" />
|
|
<script>
|
|
function is_iOS() {
|
|
return [
|
|
'iPad Simulator',
|
|
'iPhone Simulator',
|
|
'iPod Simulator',
|
|
'iPad',
|
|
'iPhone',
|
|
'iPod'
|
|
].includes(navigator.platform)
|
|
// iPad on iOS 13 detection
|
|
|| (navigator.userAgent.includes("Mac") && "ontouchend" in document)
|
|
}
|
|
if (is_iOS() && navigator.userAgent.indexOf('AppleWebKit')) {
|
|
document.getElementById("no-trash-svg").style.visibility = "hidden";
|
|
}
|
|
</script> |