Fix spolier click not working on some browser
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
@@ -82,7 +82,7 @@ function handleOnClickCapture(e) {
|
||||
openProfileViewer(userId, roomId);
|
||||
}
|
||||
|
||||
const spoiler = nativeEvent.path.find((el) => el?.hasAttribute?.('data-mx-spoiler'));
|
||||
const spoiler = nativeEvent.composedPath().find((el) => el?.hasAttribute?.('data-mx-spoiler'));
|
||||
if (spoiler) {
|
||||
spoiler.classList.toggle('data-mx-spoiler--visible');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user