Refactor delete button

Fixes #50
This commit is contained in:
Matthew Dillon 2015-11-13 14:16:50 -07:00
parent 031a83808c
commit 20a6707144
2 changed files with 10 additions and 3 deletions

View file

@ -2,10 +2,13 @@ import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'button',
classNames: ["button-red", "smaller"],
classNames: ["button-red", "smaller", "delete"],
showConfirmDelete: false,
click: function() {
if (window.confirm("Do you really want to delete this?")) {
if (!this.get('showConfirmDelete')) {
this.set('showConfirmDelete', true);
} else {
this.attrs.delete();
}
},

View file

@ -1 +1,5 @@
Delete
{{#if showConfirmDelete}}
Are you sure?
{{else}}
Delete
{{/if}}