How can I disable the dragging of a Fancybox 4 window in mobile? When browsing from the desktop, dragging is disabled by default; from mobile it seems to be active by default.
My snippet:
Fancybox.show(
[
{
src: 'page.html',
type: 'ajax'
}
]
);
In previous versions I used this snippet:
helpers: {
overlay: {
locked: true
}
}
EDIT
Problem solved, thank you very much.