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 // this can technically be done anywhere but doing this here keeps all
// the routing url path logic together. // the routing url path logic together.
linkifyMatrix.onAliasClick = function(event, alias) { if (this.onAliasClick) {
dis.dispatch({action: 'view_room_alias', room_alias: alias}); linkifyMatrix.onAliasClick = this.onAliasClick;
event.preventDefault(); }
}; if (this.onUserClick) {
linkifyMatrix.onUserClick = this.onUserClick;
}
}, },
componentWillUnmount: function() { componentWillUnmount: function() {