Changes between Initial Version and Version 2 of Ticket #15318
- Timestamp:
- Nov 1, 2018, 11:29:30 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15318 – Description
initial v2 1 1 This may have been reported before because it seems like such an obvious issue in many cases. 2 2 3 The event.preventDefault call in the ui/widgets/mouse.js module's _mouseDown and _mouseUp handler prevents other standard interactions from taking place. 3 The `event.preventDefault` call in the `ui/widgets/mouse.js` module's `_mouseDown` and `_mouseUp` handler prevents other standard interactions from taking place. 4 4 5 For example, i have a canvas-like view where there are draggable DOM elements. 5 The canvas-like view is a simple div which needs to be focused when it s clicked on or its children (the draggable DOM elements) are clicked.6 The canvas-like view is a simple div which needs to be focused when it's clicked on or its children (the draggable DOM elements) are clicked. 6 7 7 Please let me know if you would like to see a codepen/jsfiddle to understand the issue 8 Please let me know if you would like to see a codepen/jsfiddle to understand the issue.