Expose onHighlightClick on the event tiles

This commit is contained in:
Richard van der Hoff 2015-12-24 00:12:37 +00:00
parent 103b0a03b1
commit b0adb1945f
3 changed files with 32 additions and 3 deletions

View file

@ -49,7 +49,8 @@ module.exports = React.createClass({
render: function() {
var mxEvent = this.props.mxEvent;
var content = mxEvent.getContent();
var body = HtmlUtils.bodyToHtml(content, this.props.highlights);
var body = HtmlUtils.bodyToHtml(content, this.props.highlights,
{onHighlightClick: this.props.onHighlightClick});
switch (content.msgtype) {
case "m.emote":