You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Fedik that fix didn't work for me but it led me to what did:
//replace
var svHandleDisabledAttr = e.target.attributes['sv-handle-disabled'];
//with
var svHandleDisabledAttr = e.currentTarget.attributes['sv-handle-disabled'];
If you've a custom handle, with multiple childs on it,
e.target
can be any of the child but not necessary the one withsv-handle
orsv-handle-disabled
.The text was updated successfully, but these errors were encountered: