mirror of
https://github.com/discourse/discourse.git
synced 2025-02-21 04:43:55 +08:00
Combine single path conditional
This commit is contained in:
parent
8961a2ee28
commit
db5ff5f311
@ -398,10 +398,8 @@ $.fn.autocomplete = function(options) {
|
||||
term += (e.shiftKey) ? "|" : "]";
|
||||
} else if (e.which === 222) {
|
||||
term += (e.shiftKey) ? "\"" : "'";
|
||||
} else {
|
||||
if (e.which !== 8) {
|
||||
term += ",";
|
||||
}
|
||||
} else if (e.which !== 8) {
|
||||
term += ",";
|
||||
}
|
||||
|
||||
updateAutoComplete(options.dataSource(term));
|
||||
|
Loading…
x
Reference in New Issue
Block a user