01.11.2021, 07:58
Try this, but it is not guaranteed to work correctly
Add to Custom JavaScript:
Add to Custom CSS (might need some more selectors here to prevent scrolling when using sliders etc):
Add to Custom JavaScript:
Code:
$(function(){
var content = 'width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes';
$('meta[name=viewport]').attr('content', content);
});
Add to Custom CSS (might need some more selectors here to prevent scrolling when using sliders etc):
Code:
.popover,
.item-control,
.item-control-single {
touch-action: none;
}