Skip to content

Commit

Permalink
Merge pull request #25 from fdaciuk/fix-attribute
Browse files Browse the repository at this point in the history
Change attribute from for to htmlFor
  • Loading branch information
afonsopacifer committed May 4, 2016
2 parents 2e86adf + d15732e commit 29ad33e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,19 +151,19 @@ class Pomodoro extends React.Component {

<span className="check">
<input type="checkbox" ref="notification" id="notification"/>
<label for="notification"></label>
<label htmlFor="notification"></label>
<span className="checkTitle" >Notification</span>
</span>

<span className="check">
<input type="checkbox" ref="audio" id="audio"/>
<label for="audio"></label>
<label htmlFor="audio"></label>
<span className="checkTitle">Sound</span>
</span>

<span className="check">
<input type="checkbox" ref="vibrate" id="vibrate"/>
<label for="vibrate"></label>
<label htmlFor="vibrate"></label>
<span className="checkTitle">Vibration</span>
</span>

Expand Down

0 comments on commit 29ad33e

Please sign in to comment.