mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00: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();
|
this.get('controller').close();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
keyUp(e) {
|
||||||
|
if (e.keyCode === 27) { // ESC
|
||||||
|
const target = this.get('controller.cardTarget');
|
||||||
|
this.cleanUp();
|
||||||
|
target.focus();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
_removeEvents: function() {
|
_removeEvents: function() {
|
||||||
$('html').off(clickOutsideEventName);
|
$('html').off(clickOutsideEventName);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user