Implemented
Being able to scroll down on Android and iPhone while touching canvas
Right now it looks like I can't advance the page when I have my finger on the canvas. Touching and moving my finger on the yellow areas allow me to advance. However, if I touch any other area something is grabbing my touch requests and not allowing to advance. I have received several tickets from my customers that state my stite is locking their phone but in reality the canvas is grabbing the scroll requests.
My feature request: If a fancy product doesn't have draggable elements then the canvas must release control and allow the page to advance on mobile devices when trying to scroll with a finger.
Will be added in next version.
Added in 3.1
Great! Can't wait to try it out.
Hey @radykal,
This is a GREAT improvement! - Just one thing. Is it possible to "lock" the scrolling ONLY while the customer is dragging an image around in an upload zone?
At the moment when customer drags image up or down in an upload zone the whole canvas scroll making it difficult to position image.
I agree with @JohnReimann. Enable canvas lock automatically when an object is being dragged. Way to go... :D
I agree, dragging an element right now scrolls up and down the page degrading the user experience. Definitely dragging an element should lock the screen on the canvas.
This is happening for me too - but only on Android (Galaxy S7), works fine on iPhone
@radykal
I disabled the canvas touch scrolling option to try move elements without scrolling the page (up, down, left and right) and I'm getting this warning from fabric.js:
Following the link on the warning I found this:
I have Chrome 56.0.2924.87
Should I report this on a new ticket?
I cannot scroll even though none of the objects on the stage are Dragable. What is the problem?
Ok, i finally found the setting. But activating it will always disable drag & drop. Is it just me who has this issue?
Anyway here is my hack of a solution:
As i already said its a hack. Anyways: try to uncomment the two lines i commented out. That makes it work better on a few browsers for me.
R.Blasche could you tell me which js file you placed that code to get over the issue please?
Make sure this script is loaded after all the other scripts (in this case fpd-plus and jquery-fpd)
So for WP, add this to your functions.php:
// include after fpd-plus script
wp_register_script('myscript', get_stylesheet_directory_uri() . '/js/myscript.js', array('fpd-plus','jquery-fpd'), '1.0', true);
wp_enqueue_script('myscript');
Obviously create the file /js/myscript.js in your template dir. and fill it with the snippet i posted before.
I hope that works for you.