mirror of
https://github.com/discourse/discourse.git
synced 2025-01-19 04:42:55 +08:00
FIX: press ESC can close user card
This commit is contained in:
parent
2b208db071
commit
7d8cf2eb3d
|
@ -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