fix(model): rollback model attributes when back is clicked

Fixes #40
This commit is contained in:
Vlad Filippov 2016-02-05 15:42:56 -05:00
Родитель 3da22f075f
Коммит 159b42ae3c
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -25,5 +25,9 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
},
model: function() {
return this.store.createRecord('client', {});
},
deactivate: function() {
var model = this.controllerFor('client.register').get('model');
model.rollbackAttributes();
}
});

Просмотреть файл

@ -17,5 +17,9 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, {
cancel: function() {
return this.transitionTo('clients');
}
},
deactivate: function() {
var model = this.controllerFor('client.update').get('model');
model.rollbackAttributes();
}
});