Merge branch '592' into 'develop'

Allow to click hyperlink inside markdown/html content

Closes #592

See merge request pleroma/pleroma-fe!891
fix/no-extra-buttons
Shpuld Shpludson 5 years ago
commit c2cef3055d

@ -322,11 +322,8 @@ const Status = {
this.error = undefined this.error = undefined
}, },
linkClicked (event) { linkClicked (event) {
let { target } = event const target = event.target.closest('.status-content a')
if (target.tagName === 'SPAN') { if (target) {
target = target.parentNode
}
if (target.tagName === 'A') {
if (target.className.match(/mention/)) { if (target.className.match(/mention/)) {
const href = target.href const href = target.href
const attn = this.status.attentions.find(attn => mentionMatchesUrl(attn, href)) const attn = this.status.attentions.find(attn => mentionMatchesUrl(attn, href))

Loading…
Cancel
Save