1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

fix lint errors

This commit is contained in:
Leo Lam
2017-05-03 01:17:13 -04:00
parent 50ad5e3791
commit aee6541d45

View File

@@ -167,10 +167,9 @@ class MarkdownEditor extends React.Component {
keyPressed.add(e.keyCode)
this.setState({ keyPressed })
let isNoteHandlerKey = (el) => { return keyPressed.has(el) }
if (keyPressed.size === this.escapeFromEditor.length
&& !this.state.isLocked
&& this.state.status === 'CODE'
&& this.escapeFromEditor.every(isNoteHandlerKey)) {
if (keyPressed.size === this.escapeFromEditor.length &&
!this.state.isLocked && this.state.status === 'CODE' &&
this.escapeFromEditor.every(isNoteHandlerKey)) {
document.activeElement.blur()
}
if (keyPressed.size === this.supportMdSelectionBold.length && this.supportMdSelectionBold.every(isNoteHandlerKey)) {