1
0
Fork 1
mirror of https://github.com/maunium/stickerpicker synced 2024-09-16 00:11:03 +00:00

Merge pull request #26 from auscompgeek/patch-1

Show sticker body in hover tooltip
This commit is contained in:
Tulir Asokan 2021-01-20 23:58:00 +02:00 committed by GitHub
commit 3916ade97b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -309,7 +309,7 @@ const Pack = ({ pack, send }) => html`
const Sticker = ({ content, send }) => html`
<div class="sticker" onClick=${send} data-sticker-id=${content.id}>
<img data-src=${makeThumbnailURL(content.url)} alt=${content.body} />
<img data-src=${makeThumbnailURL(content.url)} alt=${content.body} title=${content.body} />
</div>
`