Closed
Description
π Provide detailed reproduction steps (if any)
- Insert a table with an image.
- Start the image resize and move the selection to the next cell.
βοΈ Expected result
Cells are not selected.
β Actual result
Cells are selected, resizing fails.
π Other details
- Browser: All browsers
GIF
If you'd like to see this fixed sooner, add a π reaction to this post.
Activity
niegowski commentedon May 26, 2020
While checking this issue I noticed that table selection and widget resize dragging handling listens for
mousedown
on view document but this makes it impossible tostopPropagation
for nested handlers. Image resize should stop the propagation ofmousedown
event so that the table handler will not start dragging. I think that we should listen tomousedown
on specific objects (image
,table
) to use DOM event bubbling.mousemove
andmouseup
should still listen on the document.7 remaining items