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

14 lines
332 B
JavaScript
Raw Normal View History

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