Fixed up checkbox input

This commit is contained in:
Matthew Dillon 2015-11-04 10:55:12 -07:00
parent 16d77dead7
commit cb43c27c6f
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,6 @@ export default Component.extend({
typeSpeciesDidChange: function() { typeSpeciesDidChange: function() {
this.toggleProperty('typeSpecies'); this.toggleProperty('typeSpecies');
console.log(this.get('typeSpecies'));
}, },
}, },
}); });

View file

@ -8,7 +8,8 @@
</div> </div>
<div data-field-span="1"> <div data-field-span="1">
<label>Type Species?</label> <label>Type Species?</label>
{{one-way-input type="checkbox" value=typeSpecies update=(action "typeSpeciesDidChange")}} {{if typeSpecies 'Yes' 'No'}} <input type="checkbox" checked={{typeSpecies}} value="{{typeSpecies}}" onchange={{action "typeSpeciesDidChange"}}>
{{if typeSpecies 'Yes' 'No'}}
</div> </div>
</div> </div>
{{#unless species.isNew}} {{#unless species.isNew}}