Clean up delete transitions
This commit is contained in:
parent
f06fbd0305
commit
227a85bb01
6 changed files with 18 additions and 12 deletions
|
@ -13,8 +13,9 @@ export default Ember.Controller.extend({
|
|||
ajaxError(characteristic.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
characteristic.deleteRecord();
|
||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
||||
characteristic.deleteRecord().then(() => {
|
||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -3,8 +3,9 @@ import Ember from 'ember';
|
|||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
delete: function() {
|
||||
this.get('model').destroyRecord();
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
this.get('model').destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
});
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
@ -13,8 +13,9 @@ export default Ember.Controller.extend({
|
|||
ajaxError(species.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
species.deleteRecord();
|
||||
this.transitionToRoute('protected.species.index');
|
||||
species.deleteRecord().then(() => {
|
||||
this.transitionToRoute('protected.species.index');
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -3,8 +3,9 @@ import Ember from 'ember';
|
|||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
delete: function() {
|
||||
this.get('model').destroyRecord();
|
||||
this.transitionToRoute('protected.species.index');
|
||||
this.get('model').destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.species.index');
|
||||
});
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
@ -13,8 +13,9 @@ export default Ember.Controller.extend({
|
|||
ajaxError(strain.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
strain.deleteRecord();
|
||||
this.transitionToRoute('protected.strains.show', strain);
|
||||
strain.deleteRecord().then(() => {
|
||||
this.transitionToRoute('protected.strains.show', strain);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -3,8 +3,9 @@ import Ember from 'ember';
|
|||
export default Ember.Controller.extend({
|
||||
actions: {
|
||||
delete: function() {
|
||||
this.get('model').destroyRecord();
|
||||
this.transitionToRoute('protected.strains.index');
|
||||
this.get('model').destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.strains.index');
|
||||
});
|
||||
},
|
||||
},
|
||||
|
||||
|
|
Reference in a new issue