From a1444d3214f477eed625ec9b45ecb34ef1b4a272 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Mon, 26 Oct 2015 17:32:31 +0000 Subject: [PATCH] Linkify room aliases. Add listener for user ID clicks. --- src/linkify-matrix.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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: