Defer entirely to the end app for handling links

This commit is contained in:
Kegan Dougal 2015-10-27 10:44:41 +00:00
parent 77d1b9af04
commit 16ddb47466

View file

@ -70,10 +70,12 @@ module.exports = {
// this can technically be done anywhere but doing this here keeps all
// the routing url path logic together.
linkifyMatrix.onAliasClick = function(event, alias) {
dis.dispatch({action: 'view_room_alias', room_alias: alias});
event.preventDefault();
};
if (this.onAliasClick) {
linkifyMatrix.onAliasClick = this.onAliasClick;
}
if (this.onUserClick) {
linkifyMatrix.onUserClick = this.onUserClick;
}
},
componentWillUnmount: function() {