mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Merge pull request #538 from matrix-org/dbkr/matrix_to_links
Make room alias & user ID links matrix.to links
This commit is contained in:
commit
5ac0aac65b
1 changed files with 2 additions and 2 deletions
|
@ -126,6 +126,7 @@ matrixLinkify.VECTOR_URL_PATTERN = "^(?:https?:\/\/)?(?:"
|
||||||
+ ")(#.*)";
|
+ ")(#.*)";
|
||||||
|
|
||||||
matrixLinkify.MATRIXTO_URL_PATTERN = "^(?:https?:\/\/)?(?:www\\.)?matrix\\.to/#/((#|@|!).*)";
|
matrixLinkify.MATRIXTO_URL_PATTERN = "^(?:https?:\/\/)?(?:www\\.)?matrix\\.to/#/((#|@|!).*)";
|
||||||
|
matrixLinkify.MATRIXTO_BASE_URL= "https://matrix.to";
|
||||||
|
|
||||||
matrixLinkify.options = {
|
matrixLinkify.options = {
|
||||||
events: function (href, type) {
|
events: function (href, type) {
|
||||||
|
@ -148,9 +149,8 @@ matrixLinkify.options = {
|
||||||
formatHref: function (href, type) {
|
formatHref: function (href, type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'roomalias':
|
case 'roomalias':
|
||||||
return '#/room/' + href;
|
|
||||||
case 'userid':
|
case 'userid':
|
||||||
return '#/user/' + href;
|
return matrixLinkify.MATRIXTO_BASE_URL + '/#/' + href;
|
||||||
default:
|
default:
|
||||||
var m;
|
var m;
|
||||||
// FIXME: horrible duplication with HtmlUtils' transform tags
|
// FIXME: horrible duplication with HtmlUtils' transform tags
|
||||||
|
|
Loading…
Reference in a new issue