Merge pull request #752 from ZogStriP/add-autocomplete-support-for-plus-and-minus

Add '+' and '-' support to the autocomplete plugin
This commit is contained in:
Jeff Atwood 2013-04-21 20:44:21 -07:00
commit 316f744ad7

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 += ",";