mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
fab34d878c
Issue #2547
19 lines
347 B
JavaScript
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;
|