You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a group that would mask (clip). I then added draggable shapes inside the group.
I found that those shapes inside the group with clip are not draggable in browsers in android.
The draggable shapes outside the group that clips works fine in all devices.
Example code structure:
vargp=newKinetic.Group({ ... ,clip: { ... }});// this text is not draggable in android browsersvartxt=newKinetic.Text({ ... ,draggable: true});gp.add(txt);// this rect is also not draggable in android browsersvarrect1=newKinetic.Rect({... ,draggable: true});gp.add(rect);// this rect is draggable in all devices that I testedvarrect2=newKinetic.Rect({... ,draggable: true});layer.add(rect2);
kineticjs version: 5.1.0
My test devices are:
Windows 8.1 - Chrome, Firefox, IE - draggable shape works in all
iPad iOS6 - Safari - draggable shape works here as well
Android Kitkat - Chrome, Firefox, Stock browser - shapes couldn't be dragged
Does anyone know what is wrong here? Thanks.
The text was updated successfully, but these errors were encountered:
I created a group that would mask (clip). I then added draggable shapes inside the group.
I found that those shapes inside the group with clip are not draggable in browsers in android.
The draggable shapes outside the group that clips works fine in all devices.
Example code structure:
kineticjs version: 5.1.0
My test devices are:
Windows 8.1 - Chrome, Firefox, IE - draggable shape works in all
iPad iOS6 - Safari - draggable shape works here as well
Android Kitkat - Chrome, Firefox, Stock browser - shapes couldn't be dragged
Does anyone know what is wrong here? Thanks.
The text was updated successfully, but these errors were encountered: