|
@@ -262,6 +262,7 @@ App.ServerValidatorMixin = Em.Mixin.create({
|
|
|
header: Em. I18n.t('installer.step7.popup.validation.warning.header'),
|
|
|
classNames: ['sixty-percent-width-modal'],
|
|
|
primary: Em.I18n.t('common.proceedAnyway'),
|
|
|
+ primaryClass: 'btn-danger',
|
|
|
onPrimary: function () {
|
|
|
this.hide();
|
|
|
deferred.resolve();
|
|
@@ -270,6 +271,10 @@ App.ServerValidatorMixin = Em.Mixin.create({
|
|
|
this.hide();
|
|
|
deferred.reject("invalid_configs"); // message used to differentiate types of rejections.
|
|
|
},
|
|
|
+ onClose: function () {
|
|
|
+ this.hide();
|
|
|
+ deferred.reject("invalid_configs"); // message used to differentiate types of rejections.
|
|
|
+ },
|
|
|
bodyClass: Em.View.extend({
|
|
|
controller: self,
|
|
|
templateName: require('templates/common/configs/config_recommendation_popup')
|