Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 92bb322

Browse files
committedJun 23, 2022
Mouse: Update elIsCancel to use composedPath instead of event.target
When using web-components with shadowRoot, the mouseDown event is triggered with the event.target pointing to the entire web component, not inner nodes that were clicked, thus to cancel the mouseDown based on inner-elements we have to use composedPath instead of event.target
1 parent 3a1b590 commit 92bb322

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎ui/widgets/mouse.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ return $.widget( "ui.mouse", {
9494

9595
this._mouseDownEvent = event;
9696

97-
let [ first = event.target ] = 'composedPath' in event.originalEvent && event.originalEvent.composedPath() || []
97+
var first = (
98+
"composedPath" in event.originalEvent ? event.originalEvent.composedPath() : [ ]
99+
)[ 0 ] || event.target;
98100

99101
var that = this,
100102
btnIsLeft = ( event.which === 1 ),

0 commit comments

Comments
 (0)
Please sign in to comment.