Merge branch 'master' of github.com:thecodingmachine/workadventure into develop
This commit is contained in:
commit
a8b91561dc
@ -35,7 +35,12 @@ export class HtmlUtils {
|
||||
const urlRegex = /(https?:\/\/[^\s]+)/g;
|
||||
text = HtmlUtils.escapeHtml(text);
|
||||
return text.replace(urlRegex, (url: string) => {
|
||||
return '<a href="' + url + '" target="_blank" style=":visited {color: white}">' + url + '</a>';
|
||||
const link = document.createElement('a');
|
||||
link.href = url;
|
||||
link.target = "_blank";
|
||||
const text = document.createTextNode(url);
|
||||
link.appendChild(text);
|
||||
return link.outerHTML;
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -1077,6 +1077,10 @@ div.modal-report-user{
|
||||
color: white;
|
||||
}
|
||||
|
||||
.discussion .messages .message p a:visited{
|
||||
color: white;
|
||||
}
|
||||
|
||||
.discussion .send-message{
|
||||
position: absolute;
|
||||
bottom: 45px;
|
||||
|
Loading…
Reference in New Issue
Block a user