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
Every green box has a tether-drop instance, and they're horizontally scrollable.
If openOn is hover, then it's impossible to close without clicking on something else with a mouse event listener. If openOn is click, then it's impossible to scroll, as the drop just opens straight away.
hover doesn't work because of the way mouseout is fired on mobile: it is only fired when something like an anchor or a button is clicked. Clicking the background of the document does not cause any event to be fired.
click doesn't work because touchstart is being added to the listened click events, which also affects swiping—it makes it impossible to scroll horizontally, for a start.
The text was updated successfully, but these errors were encountered:
Same design (in theory) as in my previous issue:
Every green box has a tether-drop instance, and they're horizontally scrollable.
If
openOn
ishover
, then it's impossible to close without clicking on something else with a mouse event listener. IfopenOn
isclick
, then it's impossible to scroll, as the drop just opens straight away.hover
doesn't work because of the way mouseout is fired on mobile: it is only fired when something like an anchor or a button is clicked. Clicking the background of the document does not cause any event to be fired.click
doesn't work becausetouchstart
is being added to the listened click events, which also affects swiping—it makes it impossible to scroll horizontally, for a start.The text was updated successfully, but these errors were encountered: