forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-28 22:05:54 +02:00
parent adcb1be249
commit 93dac33d0d
1 changed files with 17 additions and 23 deletions

View File

@ -144,32 +144,26 @@
.then(() => beamsClient.getDeviceInterests()) .then(() => beamsClient.getDeviceInterests())
.catch(console.error); .catch(console.error);
</script> </script>
<div id="mobile-prompt-container" class="fixed-bottom">
<div id="mobile-prompt" href="javascript:void(0)" data-bs-toggle="tooltip" data-bs-container="#mobile-prompt-container" data-bs-placement="top" data-bs-trigger="click" title="Install the {{'SITE_NAME' | app_config}} webapp by saving this page to your home screen!"></div>
</div>
{% endif %} {% endif %}
<!-- {% if request.path=='/' and g.system and g.timestamp > session.get('tooltip_last_dismissed',0)+60*60*24 and (not g.system.endswith('/chrome') and not g.system.endswith('/other')) and not g.system.endswith('/webview') %} --> <div id="mobile-prompt-container" class="fixed-bottom">
<div id="mobile-prompt-container" class="fixed-bottom"> <div id="mobile-prompt" href="javascript:void(0)" data-bs-toggle="tooltip" data-bs-container="#mobile-prompt-container" data-bs-placement="top" data-bs-trigger="click" title="Install the {{'SITE_NAME' | app_config}} webapp by saving this page to your home screen!"></div>
<div id="mobile-prompt" href="javascript:void(0)" data-bs-toggle="tooltip" data-bs-container="#mobile-prompt-container" data-bs-placement="top" data-bs-trigger="click" title="Install the {{'SITE_NAME' | app_config}} webapp by saving this page to your home screen!"></div> </div>
</div>
<script> <script>
if (!("standalone" in window.navigator) && window.navigator.standalone) { if (!("standalone" in window.navigator) && window.navigator.standalone) {
// if (window.innerWidth <= 737) { // if (window.innerWidth <= 737) {
document.getElementById('mobile-prompt').show() document.getElementById('mobile-prompt').show()
document.getElementsByClassName('tooltip')[0].onclick = function(event){ document.getElementsByClassName('tooltip')[0].onclick = function(event){
document.getElementById('mobile-prompt').hide() document.getElementById('mobile-prompt').hide()
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
xhr.withCredentials=true; xhr.withCredentials=true;
xhr.open("POST", '/dismiss_mobile_tip', true); xhr.open("POST", '/dismiss_mobile_tip', true);
xhr.send(); xhr.send();
} }
// } // }
} }
</script> </script>
<!-- {% endif %} -->
{% endblock %} {% endblock %}