mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
fab34d878c
Issue #2547
18 lines
347 B
JavaScript
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;
|