mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 21:41:49 +03:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
|
|
||
|
var UploadController = Ember.Controller.extend({
|
||
|
confirm: {
|
||
|
reject: {
|
||
|
func: function () { // The function called on rejection
|
||
|
return true;
|
||
|
},
|
||
|
buttonClass: true,
|
||
|
text: "Cancel" // The reject button text
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default UploadController;
|