Merge branch 'master' into clostridium
* master: Context-sensitive save-model mixin
This commit is contained in:
commit
d2c1609e86
1 changed files with 6 additions and 1 deletions
|
@ -23,11 +23,16 @@ export default Mixin.create({
|
|||
|
||||
cancel: function() {
|
||||
const model = this.get('model');
|
||||
const isNew = model.get('isNew');
|
||||
|
||||
model.get('errors').clear();
|
||||
model.rollbackAttributes();
|
||||
|
||||
if (isNew) {
|
||||
this.transitionToRoute(this.get('fallbackRouteCancel'));
|
||||
} else {
|
||||
this.transitionToRoute(this.get('fallbackRouteCancel'), model);
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
Reference in a new issue