Allow to click hyperlink inside markdown/html content
1 unresolved thread
1 unresolved thread
closes #592 (closed)
Merge request reports
Activity
323 323 }, 324 324 linkClicked (event) { 325 325 let { target } = event 326 if (target.tagName === 'SPAN') { 327 target = target.parentNode 328 } 329 if (target.tagName === 'A') { 326 target = target.tagName === 'A' ? target : target.closest('.status-content a') changed this line in version 2 of the diff
mentioned in commit c2cef305
Please register or sign in to reply