Frontmatter
| id | 2669 |
| title | main.draggable.sensor.Mouse: onMouseDown() => event.path |
| state | Closed |
| labels | bug |
| assignees | tobiu |
| createdAt | Aug 2, 2021, 2:34 AM |
| updatedAt | Aug 2, 2021, 2:37 AM |
| githubUrl | https://github.com/neomjs/neo/issues/2669 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Aug 2, 2021, 2:37 AM |

I just noticed inside Safari Tech Preview, that
event.composedPath()only works in case we are calling it inside the handler.When storing the event as the
startEventand later callingcomposedPath(), we get an empty array.To fix this, I will store the path manually inside
onMouseDown().Assuming that it is the same for touch events, I will adjust the touch sensor as well.