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
touchstart and touchend events passed via jQuery handlers don't contain originalEvent property anymore. This breaks external code that relies on the jQuery handlers. Here is the example code that shows the problem: https://codepen.io/piotr-gawron/pen/RJEGQG (try touching slider and document outside slider)
touchstart
andtouchend
events passed via jQuery handlers don't containoriginalEvent
property anymore. This breaks external code that relies on the jQuery handlers. Here is the example code that shows the problem: https://codepen.io/piotr-gawron/pen/RJEGQG (try touching slider and document outside slider)When touching the page not on the slider we will see
originalEvent exists: true
. However touching slider will end up inoriginalEvent exists: false
.The text was updated successfully, but these errors were encountered: