DDAU (dropping two-way helpers)

This commit is contained in:
Matthew Dillon 2015-11-11 16:53:46 -07:00
parent 73461d4048
commit 2beabf817c
2 changed files with 13 additions and 3 deletions

View file

@ -15,5 +15,13 @@ export default Component.extend({
submit: function() {
return this.attrs['on-submit'](this.get('identification'), this.get('password'));
},
identificationDidChange: function(value) {
this.set('identification', value);
},
passwordDidChange: function(value) {
this.set('password', value);
},
},
});

View file

@ -1,8 +1,10 @@
<form {{action "submit" on="submit"}}>
<h2>Log In</h2>
{{input value=identification type="text" placeholder="Email"}}
{{input value=password type="password" placeholder="Password"}}
{{input class="button-gray" type="submit" value="Log In"}}
{{one-way-input type="text" class="identification" value=identification update=(action "identificationDidChange") placeholder="Email"}}
{{one-way-input type="password" class="password" value=password update=(action "passwordDidChange") placeholder="Password"}}
<button type="submit" class="button-gray log-in">
Log In
</button>
</form>
<br>
<div>