mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Prevent the url from being butchered when clicking user IDs
This commit is contained in:
parent
a1444d3214
commit
11ef1ac336
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user