mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 04:08:34 +03:00
8836375ca6
- All JS should use single quotes
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; |