mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-10 14:04:35 -04:00
FIX: regression, ESC is not captured correctly
This commit is contained in:
parent
5ddb82c9b6
commit
9d43e0ae0c
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ export default function(options) {
|
|||
}
|
||||
|
||||
// ESC
|
||||
if (e.which === keys.escape) {
|
||||
if (e.which === keys.esc) {
|
||||
if (completeStart !== null) {
|
||||
closeAutocomplete();
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue