forked from MarseyWorld/MarseyWorld
fsd
parent
0e06aecdd8
commit
5e895c9b87
|
@ -145,26 +145,18 @@
|
|||
.catch(console.error);
|
||||
</script>
|
||||
{% endif %}
|
||||
<!-- <script>
|
||||
<script>
|
||||
if (!("standalone" in window.navigator) && window.navigator.standalone) {
|
||||
if (window.innerWidth <= 737){
|
||||
try {
|
||||
document.getElementById('mobile-prompt').show()
|
||||
.onclick =
|
||||
document.getElementsByClassName('tooltip')[0].addEventListener(
|
||||
'click',
|
||||
function(event){
|
||||
document.getElementById('mobile-prompt').hode()
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.withCredentials=true;
|
||||
xhr.open("POST", '/dismiss_mobile_tip', true);
|
||||
xhr.send();
|
||||
}
|
||||
)
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
if (window.innerWidth <= 737) {
|
||||
document.getElementById('mobile-prompt').show()
|
||||
document.getElementsByClassName('tooltip')[0].onclick = function(event){
|
||||
document.getElementById('mobile-prompt').hide()
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.withCredentials=true;
|
||||
xhr.open("POST", '/dismiss_mobile_tip', true);
|
||||
xhr.send();
|
||||
}
|
||||
}
|
||||
}
|
||||
</script> -->
|
||||
</script>
|
||||
{% endblock %}
|
Loading…
Reference in New Issue