Author: yusaku
Date: Fri Jan 11 03:21:35 2013
New Revision: 1431857

URL: http://svn.apache.org/viewvc?rev=1431857&view=rev
Log:
AMBARI-1139. Disable Misc section in Customize Services page of the Install 
Wizard. (Srimanth Gunturi via yusaku)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js

Modified: incubator/ambari/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1431857&r1=1431856&r2=1431857&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Fri Jan 11 03:21:35 2013
@@ -695,6 +695,9 @@ AMBARI-666 branch (unreleased changes)
 
   BUG FIXES
 
+  AMBARI-1139. Disable Misc section in Customize Services page of the Install
+  Wizard. (Srimanth Gunturi via yusaku) 
+
   AMBARI-1158. Fiters are not working correctly on Hosts page. (yusaku)
 
   AMBARI-1157. Host component operation causes lags in status/action pulldown

Modified: 
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js
URL: 
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js?rev=1431857&r1=1431856&r2=1431857&view=diff
==============================================================================
--- 
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js 
(original)
+++ 
incubator/ambari/trunk/ambari-web/app/controllers/wizard/step7_controller.js 
Fri Jan 11 03:21:35 2013
@@ -172,7 +172,8 @@ App.WizardStep7Controller = Em.Controlle
 
         console.log('pushing ' + serviceConfig.serviceName, serviceConfig);
 
-        if 
(this.get('selectedServiceNames').contains(serviceConfig.serviceName) || 
serviceConfig.serviceName === 'MISC') {
+        if 
(this.get('selectedServiceNames').contains(serviceConfig.serviceName)) {
+          // AMBARI-1139 - Hiding MISC section // || serviceConfig.serviceName 
=== 'MISC') {
           serviceConfig.showConfig = true;
         }
 


Reply via email to