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