Clean up delete transitions

This commit is contained in:
Matthew Ryan Dillon 2015-10-20 16:12:35 -07:00
parent f06fbd0305
commit 227a85bb01
6 changed files with 18 additions and 12 deletions

View file

@ -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);
});
}
},

View file

@ -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');
});
},
},

View file

@ -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');
});
}
},

View file

@ -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');
});
},
},

View file

@ -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);
});
}
},

View file

@ -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');
});
},
},