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

18 lines
316 B
JavaScript
Raw Normal View History

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