mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
35 lines
801 B
JavaScript
35 lines
801 B
JavaScript
|
var AuthFailedUnsavedController = Ember.Controller.extend({
|
||
|
editorController: Ember.computed.alias('model'),
|
||
|
|
||
|
actions: {
|
||
|
confirmAccept: function () {
|
||
|
var editorController = this.get('editorController');
|
||
|
|
||
|
if (editorController) {
|
||
|
editorController.get('model').rollback();
|
||
|
}
|
||
|
|
||
|
window.onbeforeunload = null;
|
||
|
|
||
|
window.location = this.get('ghostPaths').adminRoot + '/signin/';
|
||
|
},
|
||
|
|
||
|
confirmReject: function () {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
|
||
|
confirm: {
|
||
|
accept: {
|
||
|
text: 'Leave',
|
||
|
buttonClass: 'btn btn-red'
|
||
|
},
|
||
|
reject: {
|
||
|
text: 'Stay',
|
||
|
buttonClass: 'btn btn-default btn-minor'
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default AuthFailedUnsavedController;
|