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() {
|
cancel: function() {
|
||||||
const model = this.get('model');
|
const model = this.get('model');
|
||||||
|
const isNew = model.get('isNew');
|
||||||
|
|
||||||
model.get('errors').clear();
|
model.get('errors').clear();
|
||||||
model.rollbackAttributes();
|
model.rollbackAttributes();
|
||||||
|
|
||||||
this.transitionToRoute(this.get('fallbackRouteCancel'), model);
|
if (isNew) {
|
||||||
|
this.transitionToRoute(this.get('fallbackRouteCancel'));
|
||||||
|
} else {
|
||||||
|
this.transitionToRoute(this.get('fallbackRouteCancel'), model);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue