Skip to content
This repository has been archived by the owner on Nov 16, 2018. It is now read-only.

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
chollier committed Aug 27, 2014
1 parent 8362cfa commit 6b1eb4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DateTimePicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ DateTimePicker = React.createClass({

{this.renderDatePicker()}

<a className="btn btn-default picker-switch" style={{width:'100%'}} onClick={this.props.togglePicker}><Glyphicon name={this.props.showTimePicker ? 'calendar' : 'time'} /></a>
<a className="btn btn-default picker-switch" style={{width:'100%'}} onClick={this.props.togglePicker}><Glyphicon glyph={this.props.showTimePicker ? 'calendar' : 'time'} /></a>

{this.renderTimePicker()}

Expand Down
2 changes: 1 addition & 1 deletion src/coffee/DateTimePicker.jsx.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ DateTimePicker = React.createClass(

{this.renderDatePicker()}

<a className="btn btn-default picker-switch" style={{width:'100%'}} onClick={this.props.togglePicker}><Glyphicon name={this.props.showTimePicker ? 'calendar' : 'time'} /></a>
<a className="btn btn-default picker-switch" style={{width:'100%'}} onClick={this.props.togglePicker}><Glyphicon glyph={this.props.showTimePicker ? 'calendar' : 'time'} /></a>

{this.renderTimePicker()}

Expand Down

0 comments on commit 6b1eb4d

Please sign in to comment.