|
import Ember from 'ember';
|
|
|
|
export default Ember.Route.extend({
|
|
model: function() {
|
|
return this.modelFor('stack');
|
|
},
|
|
|
|
resetController: function (controller, isExiting/*, transition*/) {
|
|
if (isExiting)
|
|
{
|
|
controller.setProperties({
|
|
selectedService: null,
|
|
});
|
|
}
|
|
}
|
|
});
|