scinote-web/app/assets/javascripts/my_modules/pwa_mobile_app.js
2020-10-26 09:28:44 +01:00

7 lines
142 B
JavaScript

(function() {
// Show button only on mobile devices
if ('ontouchstart' in window) {
$('.open-mobile-app-container').show();
}
}());