Browse Source

Merge pull request #26 from auscompgeek/patch-1

Show sticker body in hover tooltip
pull/32/head
Tulir Asokan 3 years ago
committed by GitHub
parent
commit
3916ade97b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      web/src/index.js

2
web/src/index.js

@ -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>
`

Loading…
Cancel
Save