Open iprasadg opened 4 years ago
@iprasadg
onDragStart({ inputEvent, target, stop }) {
this.moveable.updateRect();
if (inputEvent.target.nodeName === "SPAN") {
stop();
}
}
Ooops ! Very sorry for the first issue. It was a mistake on my end, thanks for reply.
For 2nd issue regarding Contenteditable with groupable, for now I solved this issue doing toggling of some style for element having class 'moveable-area'.
It is working as expected, but we should not rely on this solution. There should be input parameter to moveable which will tell moveable, whether to edit inside group or not.
Thanks
Environments
Description
There are issues with contenteditable set to true:
1) Contenteditable is not working on certain tags e.g Heading tags (H1, H2 etc), Div tag. Also on left click it is not editable but on right click it is working but as we know right click is a strange behavior as user always will always try to edit the content with left click.
2) Contenteditable is not working for multiple elements inside Groupable.
Demo for issue 1