mirror of https://github.com/rancher/ui.git
18 lines
347 B
JavaScript
18 lines
347 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default Controller.extend({
|
|
|
|
selectedService: null,
|
|
showAddtlInfo: false,
|
|
|
|
actions: {
|
|
openInfo: function(service) {
|
|
this.set('selectedService', service);
|
|
this.set('showAddtlInfo',true);
|
|
},
|
|
dismiss: function() {
|
|
this.set('showAddtlInfo',false);
|
|
}
|
|
},
|
|
});
|