Fix issue with tagging and emails

This commit is contained in:
Pierre 2018-05-13 11:59:54 +02:00
parent 5e29916f97
commit 7a3387b550

View File

@ -37,11 +37,11 @@ ComunicWeb.components.textParser = {
_prepare_user_tag_parsing: function(target){ _prepare_user_tag_parsing: function(target){
//Find all occurences of users tag //Find all occurences of users tag
while(target.innerHTML.match(/@[a-zA-Z0-9.]+/i)){ while(target.innerHTML.match(/ @[a-zA-Z0-9.]+/i)){
//Get user tag //Get user tag
var userTag = target.innerHTML.match(/@[a-zA-Z0-9.]+/i)[0]; var userTag = target.innerHTML.match(/ @[a-zA-Z0-9.]+/i)[0];
var userID = userTag.replace("@", ""); var userID = userTag.replace(" @", "");
target.innerHTML = target.innerHTML.replace(userTag, "<userTag>"+userID+"</userTag>"); target.innerHTML = target.innerHTML.replace(userTag, "<userTag>"+userID+"</userTag>");