Ghost/core/client/controllers/modals/upload.js
2014-06-17 16:18:32 -04:00

19 lines
347 B
JavaScript

var UploadController = Ember.Controller.extend({
acceptEncoding: 'image/*',
actions: {
confirmReject: function () {
return true;
}
},
confirm: {
reject: {
buttonClass: true,
text: 'Cancel' // The reject button text
}
}
});
export default UploadController;