Example #1
0
 init: function() {
   this._super();
   if (window.ENV.debug){
     var dummyUser = User.create({name: 'name', email: '*****@*****.**', password: '******', password_confirmation: 'Password01'});
     this.set('model', dummyUser);
   }
 },
Example #2
0
 clearForm: function(){
   var emptyUser = User.create({});
   this.set('model', emptyUser);
   this.clearErrors();
 },