13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
export default Ember.Controller.extend({
|
|
actions: {
|
|
confirm() {
|
|
this.get('model.confirm')();
|
|
this.send('closeModal');
|
|
},
|
|
|
|
cancel() {
|
|
this.send('closeModal');
|
|
}
|
|
}
|
|
})
|