ESC key should go back when editing a document

This commit is contained in:
Tom Moor
2019-03-09 20:12:43 -08:00
parent 38f4e6b9a2
commit a2749a752a

View File

@@ -101,6 +101,12 @@ class DocumentScene extends React.Component<Props> {
if (this.document) this.props.history.push(documentMoveUrl(this.document));
}
@keydown('esc')
goBack(ev) {
ev.preventDefault();
this.props.history.goBack();
}
@keydown('h')
goToHistory(ev) {
ev.preventDefault();