Skip to content

Commit

Permalink
Merge pull request #63 from cdphp/fix-ref-error
Browse files Browse the repository at this point in the history
fix poker card error
  • Loading branch information
oiahoon authored Jun 25, 2018
2 parents 81eaa0a + 0716cf4 commit b7e27aa
Show file tree
Hide file tree
Showing 4 changed files with 5,491 additions and 807 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class PokerEmitter extends React.Component {
let owner_button = this.renderOwnerButton();
let input_disable = this.is_disabled();
return(
<form ref='play_card' onSubmit={this._onSubmit.bind(this)}>
<form onSubmit={this._onSubmit.bind(this)}>
<div className="row col-sm-8 poker-emitter form-inline from-control">
<div className="col-md-4">
<div className="input-group-lg">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SubjectPopup extends React.Component {
<div className="modal-dialog" role="document">
<div className="modal-content">
<div className="modal-body">
<input type="text" className="form-control" id="subject" name="topic" placeholder='...' autofocus="autofocus" onChange={this._onChange.bind(this)} value={this.state.topic} />
<input type="text" className="form-control" id="subject" name="topic" placeholder='...' autoFocus="autofocus" onChange={this._onChange.bind(this)} value={this.state.topic} />
</div>
<div className="modal-footer">
<button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
Expand Down
Loading

0 comments on commit b7e27aa

Please sign in to comment.