Invoke onUserClick to allow impls to do whatever on user clicks.

This commit is contained in:
Kegan Dougal 2015-10-26 17:59:49 +00:00
parent 11ef1ac336
commit 24ac801417

View file

@ -95,13 +95,14 @@ function matrixLinkify(linkify) {
S_AT_NAME_COLON_DOMAIN_DOT.on(TT.TLD, S_USERID);
}
matrixLinkify.onUserClick = function(e, userId) {};
matrixLinkify.options = {
events: function (href, type) {
if (type === "userid") {
return {
click: function(e) {
// sprout a MemberInfo context menu
console.log("Context => %s", href);
matrixLinkify.onUserClick(e, href);
e.preventDefault();
}
};
@ -116,6 +117,6 @@ matrixLinkify.options = {
return href;
}
}
}
};
module.exports = matrixLinkify;