1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-01-25 06:37:14 +00:00

refactor: by ESLint

This commit is contained in:
sota1235
2017-03-13 18:40:12 +09:00
parent 93b15f2a7a
commit 6fcbca6b10
8 changed files with 9 additions and 11 deletions

View File

@@ -266,13 +266,13 @@ class MarkdownNoteDetail extends React.Component {
</div>
<div styleName='info-right'>
{(() => {
const faClassName=`fa ${this.getToggleLockButton()}`
const faClassName = `fa ${this.getToggleLockButton()}`
const lockButtonComponent =
<button styleName='info-right-button'
onFocus={(e) => this.handleFocus(e)}
onMouseDown={(e) => this.handleLockButtonMouseDown(e)}
>
<i className={faClassName}/>
<i className={faClassName} />
</button>
return (
this.state.editorStatus === 'CODE' ? lockButtonComponent : ''

View File

@@ -310,7 +310,7 @@ class NoteList extends React.Component {
})
}
alertIfSnippet() {
alertIfSnippet () {
let { location } = this.props
const targetIndex = _.findIndex(this.notes, (note) => {
return `${note.storage}-${note.key}` === location.query.key

View File

@@ -16,7 +16,7 @@ export const DEFAULT_CONFIG = {
listStyle: 'DEFAULT', // 'DEFAULT', 'SMALL'
hotkey: {
toggleFinder: OSX ? 'Cmd + Alt + S' : 'Super + Alt + S',
toggleMain: OSX ? 'Cmd + Alt + L' : 'Super + Alt + E',
toggleMain: OSX ? 'Cmd + Alt + L' : 'Super + Alt + E'
},
ui: {
theme: 'default',

View File

@@ -1,6 +1,5 @@
import React, { PropTypes } from 'react'
import ReactDOM from 'react-dom'
import store from '../store'
const electron = require('electron')
const ipc = electron.ipcRenderer
@@ -26,7 +25,6 @@ export default class DeleteArticleModal extends React.Component {
}
handleYesButtonClick (e) {
// store.dispatch(destroyArticle(this.props.articleKey))
this.props.close()
}