mirror of https://github.com/rancher/ui.git
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Route.extend({
|
|
actions: {
|
|
willTransition: function() {
|
|
this.controller.set('showAddtlInfo', null);
|
|
},
|
|
},
|
|
|
|
resetController: function (controller, isExisting/*, transition*/) {
|
|
if (isExisting)
|
|
{
|
|
controller.set('showAddtlInfo', false);
|
|
}
|
|
},
|
|
});
|