Usercard cloak not disappears on touchstart

Hello :waving_hand:

I noticed on mobile (Android 10) when I open a usercard and then scroll the page the (backdrop) cloak still there. Earlier it disappeared with usercard when I started to scroll the page. Now it requires an other tap or tapping outside the usercard to dissapears it.

Thanks :slightly_smiling_face:

2 Likes

I encountered this slightly annoying issue as well.

This is the annoying part since the overlay prevents us from interacting with the interface and requires us to tap while the card has already been closed.

1 Like

Replacing mousedown with pointerdown in discourse/frontend/discourse/app/components/card-contents-base.js at d056c1e358d1cb823632aa4a8c51a42e911969b3 Β· discourse/discourse Β· GitHub seems to fix the issue.

Those event weren’t compatible with Safari until 2019, so I guess we could use them? Unless there are caveats I’m unaware of.

3 Likes

Thanks for the PR, it is now merged.

1 Like

Sadly my pr introduces a new bug after all :cry:

When you touch outside the card, the event passes through the cloak and trigger anything that can be clicked beneath.
Here, a topic title:

Sorry about that! :see_no_evil_monkey:

2 Likes

This topic was automatically closed after 15 hours. New replies are no longer allowed.

Good point, no worries, this should fix that (and it also adds fade-in/fade-out for the background cloak):

1 Like