1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

move statusbar

This commit is contained in:
Dick Choi
2016-10-15 18:20:13 +09:00
parent 7107777df3
commit 7729ed4f72
17 changed files with 312 additions and 151 deletions

View File

@@ -45,7 +45,7 @@ class NoteList extends React.Component {
this.refreshTimer = setInterval(() => this.forceUpdate(), 60 * 1000)
ee.on('list:next', this.selectNextNoteHandler)
ee.on('list:prior', this.selectPriorNoteHandler)
ee.on('lost:focus', this.focusHandler)
ee.on('list:focus', this.focusHandler)
}
componentWillReceiveProps (nextProps) {
@@ -63,7 +63,7 @@ class NoteList extends React.Component {
ee.off('list:next', this.selectNextNoteHandler)
ee.off('list:prior', this.selectPriorNoteHandler)
ee.off('lost:focus', this.focusHandler)
ee.off('list:focus', this.focusHandler)
}
componentDidUpdate (prevProps) {