mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
Merge pull request #3494 from fantasticfears/esc-user-card
FIX: press ESC can close user card
This commit is contained in:
commit
664d2e11d7
|
@ -120,6 +120,14 @@ export default Discourse.View.extend(CleansUp, {
|
|||
this.get('controller').close();
|
||||
},
|
||||
|
||||
keyUp(e) {
|
||||
if (e.keyCode === 27) { // ESC
|
||||
const target = this.get('controller.cardTarget');
|
||||
this.cleanUp();
|
||||
target.focus();
|
||||
}
|
||||
},
|
||||
|
||||
_removeEvents: function() {
|
||||
$('html').off(clickOutsideEventName);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user