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
bug
Text selection should not be overwritten by default in desktop layout. It should be condition based.
I am using this library for swiping, it's working fine as expected on mobile/iPad layout. I don't need the swiping behaviour on desktop layout. The library should accept an argument which takes breakpoint after which the swiping should be enabled or simple true or false if swiping needed in desktop or not?
I have tried the solution which is provided in other issues but it doesn't work at all.
Following is the code:
$('.some-text').on('mousedown touchstart pointerdown', function (e){ e.stopPropagation(); });
stopPropagation stops all the event handling(includes browser default selection).
The text was updated successfully, but these errors were encountered:
This is a (multiple allowed):
Text selection should not be overwritten by default in desktop layout. It should be condition based.
I am using this library for swiping, it's working fine as expected on mobile/iPad layout. I don't need the swiping behaviour on desktop layout. The library should accept an argument which takes breakpoint after which the swiping should be enabled or simple true or false if swiping needed in desktop or not?
I have tried the solution which is provided in other issues but it doesn't work at all.
Following is the code:
$('.some-text').on('mousedown touchstart pointerdown', function (e){ e.stopPropagation(); });
stopPropagation stops all the event handling(includes browser default selection).
The text was updated successfully, but these errors were encountered: