diff --git a/src/linkify-matrix.js b/src/linkify-matrix.js index e92a3efc91..8530fb2ddf 100644 --- a/src/linkify-matrix.js +++ b/src/linkify-matrix.js @@ -96,10 +96,21 @@ function matrixLinkify(linkify) { } matrixLinkify.options = { + events: function (href, type) { + if (type === "userid") { + return { + click: function(e) { + // sprout a MemberInfo context menu + console.log("Context => %s", href) + } + }; + } + }, + formatHref: function (href, type) { switch (type) { case 'roomalias': - return '#'; + return "#/room/" + href; case 'userid': return '#'; default: