1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-14 10:16:26 +00:00

refactor hotkeys

This commit is contained in:
Rokt33r
2015-07-19 15:06:36 +09:00
parent 16b60ada50
commit e9308bdd69
10 changed files with 233 additions and 115 deletions

View File

@@ -9,7 +9,7 @@ var ModalBase = React.createClass({
render: function () {
if (this.props.isOpen) {
return (
<div onClick={this.props.close} className='ModalBase'>
<div ref='modal' onClick={this.props.close} className='ModalBase'>
{this.props.children}
</div>
)