You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ab...@apache.org on 2014/04/04 12:36:38 UTC

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

Repository: ambari
Updated Branches:
  refs/heads/trunk 14b44ee20 -> 2ab58cfb5


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


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/2ab58cfb
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/2ab58cfb
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/2ab58cfb

Branch: refs/heads/trunk
Commit: 2ab58cfb59475502dff4d7f097569094fe74236e
Parents: 14b44ee
Author: aBabiichuk <ab...@cybervisiontech.com>
Authored: Thu Apr 3 17:06:04 2014 +0300
Committer: aBabiichuk <ab...@cybervisiontech.com>
Committed: Fri Apr 4 13:35:48 2014 +0300

----------------------------------------------------------------------
 ambari-web/app/views/wizard/step6_view.js | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/2ab58cfb/ambari-web/app/views/wizard/step6_view.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/views/wizard/step6_view.js b/ambari-web/app/views/wizard/step6_view.js
index 2886dcb..6cf0b31 100644
--- a/ambari-web/app/views/wizard/step6_view.js
+++ b/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'));
     }
   })