Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
(848---simplified-checkbox-fix) trip eqs
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcculloh committed Nov 26, 2014
1 parent 5734449 commit 697245d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
},

toggle: function(e) {
if (!e || e.currentTarget == e.originalEvent.target) {
if (!e || e.currentTarget === e.originalEvent.target) {
this.state.checked = !this.state.checked;

this._toggleCheckedState();
Expand Down

0 comments on commit 697245d

Please sign in to comment.