Ghost/core/client/controllers/modals/upload.js

18 lines
316 B
JavaScript
Raw Normal View History

2014-03-31 08:07:05 +04:00
var UploadController = Ember.Controller.extend({
actions: {
confirmReject: function () {
return true;
}
},
2014-03-31 08:07:05 +04:00
confirm: {
reject: {
buttonClass: true,
text: 'Cancel' // The reject button text
2014-03-31 08:07:05 +04:00
}
}
});
export default UploadController;