fixed #102
This commit is contained in:
parent
6d7d3cbc9d
commit
0bd96d1207
1 changed files with 2 additions and 2 deletions
|
@ -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++) {
|
||||
|
|
Reference in a new issue