Skip to content

Commit

Permalink
Merge pull request #29 from lorengreenfield/checkbox-radio-checked
Browse files Browse the repository at this point in the history
Set value of checkboxes and radios to the boolean of checked
  • Loading branch information
lorengreenfield authored Jul 10, 2017
2 parents f224caf + 4da0111 commit 2419062
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/halfcab.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function emptyBody(){
function formField(ob, prop){

return e => {
ob[prop] = e.currentTarget.value;
ob[prop] = e.currentTarget.type === 'checkbox' || e.currentTarget.type === 'radio' ? e.currentTarget.checked : e.currentTarget.value;
console.log('---formField update---');
console.log(prop, ob);
}
Expand Down
2 changes: 1 addition & 1 deletion halfcab.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function emptyBody(){
function formField(ob, prop){

return e => {
ob[prop] = e.currentTarget.value;
ob[prop] = e.currentTarget.type === 'checkbox' || e.currentTarget.type === 'radio' ? e.currentTarget.checked : e.currentTarget.value;
console.log('---formField update---');
console.log(prop, ob);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "halfcab",
"version": "1.8.0",
"version": "1.8.1",
"description": "A simple universal JavaScript framework focused on making use of es2015 template strings to build components.",
"main": "dist/halfcab.js",
"module": "halfcab.js",
Expand Down

0 comments on commit 2419062

Please sign in to comment.