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

Merge branch 'master' of github.com:BoostIO/Boostnote into add-notification-onChangeUi

This commit is contained in:
Paul Rosset
2017-12-01 17:34:16 +00:00
2 changed files with 7 additions and 5 deletions

View File

@@ -1,11 +1,8 @@
.notification-area
z-index 1000
font-size 12px
position absolute
bottom 20px
width 100%
float left
height 30px
position: relative
top: 12px
background-color none
.notification-link

View File

@@ -38,6 +38,10 @@ class TagSelect extends React.Component {
}
}
handleNewTagBlur (e) {
this.submitTag()
}
removeLastTag () {
let { value } = this.props
@@ -135,6 +139,7 @@ class TagSelect extends React.Component {
placeholder='Add tag...'
onChange={(e) => this.handleNewTagInputChange(e)}
onKeyDown={(e) => this.handleNewTagInputKeyDown(e)}
onBlur={(e) => this.handleNewTagBlur(e)}
/>
</div>
)