diff --git a/WebKit/scripts/helper/Core.js b/WebKit/scripts/helper/Core.js index 0882bb2..e90433b 100644 --- a/WebKit/scripts/helper/Core.js +++ b/WebKit/scripts/helper/Core.js @@ -593,7 +593,7 @@ function(jQuery, Paths, URI, HostApp, Cache) { var text = node.innerHTML; var mentions_in_text = []; - var res = text.match(/(\^[\w:/.]+)/ig); + var res = text.match(/(\^[\w]+\.[\w:/.]+)/ig); if (res) { for (var i = 0; i < res.length; i++) { @@ -680,7 +680,7 @@ function(jQuery, Paths, URI, HostApp, Cache) { }) } - var res = text.match(/(\^[\w:/.]+)/ig); + var res = text.match(/(\^[\w]+\.[\w:/.]+)/ig); if (res) { for (var i = 0; i < res.length; i++) {