mirror of
https://github.com/discourse/discourse.git
synced 2025-06-24 22:11:34 +08:00
Merge pull request #3494 from fantasticfears/esc-user-card
FIX: press ESC can close user card
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user