FIX: Whitelist parentheses and brackets in autocomplete.

This commit is contained in:
Guo Xiang Tan 2015-10-16 13:17:51 +08:00
parent e744d85c99
commit 8e8e787ad0
1 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ export default function(options) {
if (options.key && e.which === options.key.charCodeAt(0)) {
caretPosition = Discourse.Utilities.caretPosition(me[0]);
var prevChar = me.val().charAt(caretPosition - 1);
if (!prevChar || /\W/.test(prevChar)) {
if (!prevChar || /[^\w\)\]]/.test(prevChar)) {
completeStart = completeEnd = caretPosition;
updateAutoComplete(options.dataSource(""));
}
@ -341,7 +341,7 @@ export default function(options) {
stopFound = prev === options.key;
if (stopFound) {
prev = me[0].value[c - 1];
if (!prev || /\W/.test(prev)) {
if (!prev || /[^\w\)\]]/.test(prev)) {
completeStart = c;
caretPosition = completeEnd = initial;
term = me[0].value.substring(c + 1, initial);