Hi,
for a job I need to create a draggable object in edge, and after insert it in a powerpoint presentation as a web object using IspringPro.
My problem is that when I try to drag my object I move all the page and not the draggable, specially using Ipad.
Could someone help me, please?
Maybe a code to disable the scrollbar is enough.
Thanks a million
The code that I've used for the drag is this:
$.getScript('jquery-ui-1.10.0.custom.min.js', function() {
sym.$('MSG1').hide();
sym.$('Snap1_U').draggable({
disabled: true,
});
sym.$('txt_group').draggable({
disabled: false,
axis: "y",
containment: "parent",
snap: true,
revert: "invalid",
});