Prevent the url from being butchered when clicking user IDs

pull/21833/head
Kegan Dougal 2015-10-26 17:36:03 +00:00
parent a1444d3214
commit 11ef1ac336
1 changed files with 2 additions and 3 deletions

View File

@ -101,7 +101,8 @@ matrixLinkify.options = {
return {
click: function(e) {
// sprout a MemberInfo context menu
console.log("Context => %s", href)
console.log("Context => %s", href);
e.preventDefault();
}
};
}
@ -111,8 +112,6 @@ matrixLinkify.options = {
switch (type) {
case 'roomalias':
return "#/room/" + href;
case 'userid':
return '#';
default:
return href;
}