1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-17 11:41:44 +00:00

hide sidenav toggle button temporarily

This commit is contained in:
Dick Choi
2016-07-15 10:21:21 +09:00
parent 9b98035ee7
commit 8452a95114

View File

@@ -83,7 +83,7 @@ class SideNav extends React.Component {
<div styleName='storageList-empty'>No storage mount.</div> <div styleName='storageList-empty'>No storage mount.</div>
)} )}
</div> </div>
{false &&
<button styleName='navToggle' <button styleName='navToggle'
onClick={(e) => this.handleToggleButtonClick(e)} onClick={(e) => this.handleToggleButtonClick(e)}
> >
@@ -92,6 +92,7 @@ class SideNav extends React.Component {
: <i className='fa fa-angle-double-left'/> : <i className='fa fa-angle-double-left'/>
} }
</button> </button>
}
</div> </div>
) )
} }