0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/controllers/modals/upload.js
2014-06-17 16:18:32 -04:00

18 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;