mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 10:58:31 -05:00
FIX: Don't allow mid word emoticons
This commit is contained in:
parent
706fd3c59a
commit
65efb8d83f
1 changed files with 8 additions and 0 deletions
|
@ -64,6 +64,14 @@
|
||||||
firstSpace = text.search(/\s/),
|
firstSpace = text.search(/\s/),
|
||||||
contents;
|
contents;
|
||||||
|
|
||||||
|
if (prev && prev.length) {
|
||||||
|
var lastToken = prev[prev.length-1];
|
||||||
|
if (lastToken && lastToken.charAt) {
|
||||||
|
var lastChar = lastToken.charAt(lastToken.length-1);
|
||||||
|
if (lastChar !== ' ') return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If there is no trailing colon, check our translations that begin with colons
|
// If there is no trailing colon, check our translations that begin with colons
|
||||||
if (endPos === -1 || (firstSpace !== -1 && endPos > firstSpace)) {
|
if (endPos === -1 || (firstSpace !== -1 && endPos > firstSpace)) {
|
||||||
translationColonRegexp.lastIndex = 0;
|
translationColonRegexp.lastIndex = 0;
|
||||||
|
|
Loading…
Reference in a new issue