ソースを参照

AMBARI-5339 Checkboxes displayed incorrectly on "Assign Slaves and Clients" page on Install wizard. (ababiichuk)

aBabiichuk 11 年 前
コミット
2ab58cfb59
1 ファイル変更3 行追加0 行削除
  1. 3 0
      ambari-web/app/views/wizard/step6_view.js

+ 3 - 0
ambari-web/app/views/wizard/step6_view.js

@@ -86,6 +86,9 @@ App.WizardStep6View = App.TableView.extend({
     disabledBinding: 'checkbox.isInstalled',
 
     click: function () {
+      if ($.browser.mozilla) {
+        this.toggleProperty('checkbox.checked');
+      }
       this.get('controller').checkCallback(this.get('checkbox.component'));
     }
   })