mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Use href='#' hack to make link text look like a link
This commit is contained in:
parent
45ada1887d
commit
56ac0004e5
1 changed files with 3 additions and 3 deletions
|
@ -180,7 +180,8 @@ module.exports = React.createClass({
|
|||
}
|
||||
},
|
||||
|
||||
onStarterLinkClick: function(starterLink) {
|
||||
onStarterLinkClick: function(starterLink, ev) {
|
||||
ev.preventDefault();
|
||||
// We need to add on our scalar token to the starter link, but we may not have one!
|
||||
// In addition, we can't fetch one on click and then go to it immediately as that
|
||||
// is then treated as a popup!
|
||||
|
@ -237,8 +238,7 @@ module.exports = React.createClass({
|
|||
body = <a href={ this.props.highlightLink }>{ body }</a>;
|
||||
}
|
||||
else if (content.data && typeof content.data["org.matrix.neb.starter_link"] === "string") {
|
||||
// FIXME: React replaces this with a <span> because there is no href= - Matthew haaaalp!
|
||||
body = <a onClick={ this.onStarterLinkClick.bind(this, content.data["org.matrix.neb.starter_link"]) }>{ body }</a>;
|
||||
body = <a href="#" onClick={ this.onStarterLinkClick.bind(this, content.data["org.matrix.neb.starter_link"]) }>{ body }</a>;
|
||||
}
|
||||
|
||||
var widgets;
|
||||
|
|
Loading…
Reference in a new issue