Ver Fonte

AMBARI-2587. Install wizard: on step3 when we open a host check popup "show details" doesn't work in IE9. (Andrii Babiichuk via yusaku)

Yusaku Sako há 12 anos atrás
pai
commit
a39283a553
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      ambari-web/app/controllers/wizard/step3_controller.js

+ 1 - 1
ambari-web/app/controllers/wizard/step3_controller.js

@@ -1048,7 +1048,7 @@ App.WizardStep3Controller = Em.Controller.extend({
          * open new browser tab with detailed content
          */
         openWarningsInDialog: function(){
-          var newWindow = window.open('', this.get('category')+' warnings');
+          var newWindow = window.open('');
           var newDocument = newWindow.document;
           newDocument.write(this.get('contentInDetails'));
           newWindow.focus();