Add '+' and '-' support to the autocomplete plugin

This commit is contained in:
Régis Hanol 2013-04-22 01:43:41 +02:00
parent c14679995d
commit ea23f637e1

View File

@ -294,6 +294,10 @@ $.fn.autocomplete = function(options) {
term = me.val().substring(completeStart + (options.key ? 1 : 0), caretPosition);
if (e.which >= 48 && e.which <= 90) {
term += String.fromCharCode(e.which);
} else if (e.which === 187) {
term += "+";
} else if (e.which === 189) {
term += "-";
} else {
if (e.which !== 8) {
term += ",";