You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ja...@apache.org on 2013/05/06 19:33:49 UTC

svn commit: r1479650 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/controllers/application.js

Author: jaimin
Date: Mon May  6 17:33:49 2013
New Revision: 1479650

URL: http://svn.apache.org/r1479650
Log:
AMBARI-2080. Cluster name and Background operations indicator should disappear on logout. (jaimin)

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

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1479650&r1=1479649&r2=1479650&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Mon May  6 17:33:49 2013
@@ -828,6 +828,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2080. Cluster name and Background operations indicator should
+ disappear on logout. (jaimin)
+
  AMBARI-2078. Hive Metastore host not changing on Assign Masters page. (jaimin)
 
  AMBARI-2077. Update stack mock data to make testMode functional on step4 of

Modified: incubator/ambari/trunk/ambari-web/app/controllers/application.js
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/controllers/application.js?rev=1479650&r1=1479649&r2=1479650&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-web/app/controllers/application.js (original)
+++ incubator/ambari/trunk/ambari-web/app/controllers/application.js Mon May  6 17:33:49 2013
@@ -34,8 +34,8 @@ App.ApplicationController = Em.Controlle
   }.property('clusterName'),
 
   isClusterDataLoaded: function() {
-    return App.router.get('clusterController.isLoaded');
-  }.property('App.router.clusterController.isLoaded'),
+    return App.router.get('clusterController.isLoaded') && App.router.get('loggedIn');
+  }.property('App.router.clusterController.isLoaded','App.router.loggedIn'),
 
   init: function(){
     this._super();