Combine single path conditional
This commit is contained in:
parent
8961a2ee28
commit
db5ff5f311
|
@ -398,10 +398,8 @@ $.fn.autocomplete = function(options) {
|
||||||
term += (e.shiftKey) ? "|" : "]";
|
term += (e.shiftKey) ? "|" : "]";
|
||||||
} else if (e.which === 222) {
|
} else if (e.which === 222) {
|
||||||
term += (e.shiftKey) ? "\"" : "'";
|
term += (e.shiftKey) ? "\"" : "'";
|
||||||
} else {
|
} else if (e.which !== 8) {
|
||||||
if (e.which !== 8) {
|
term += ",";
|
||||||
term += ",";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
updateAutoComplete(options.dataSource(term));
|
updateAutoComplete(options.dataSource(term));
|
||||||
|
|
Loading…
Reference in New Issue