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

svn commit: r1489963 - /incubator/ambari/branches/branch-1.2.4/ambari-web/app/controllers/main/apps/item_controller.js

Author: yusaku
Date: Wed Jun  5 17:08:21 2013
New Revision: 1489963

URL: http://svn.apache.org/r1489963
Log:
AMBARI-2289. Job Charts popup does not appear. (Oleg Nechiporenko via yusaku)

Modified:
    incubator/ambari/branches/branch-1.2.4/ambari-web/app/controllers/main/apps/item_controller.js

Modified: incubator/ambari/branches/branch-1.2.4/ambari-web/app/controllers/main/apps/item_controller.js
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/branch-1.2.4/ambari-web/app/controllers/main/apps/item_controller.js?rev=1489963&r1=1489962&r2=1489963&view=diff
==============================================================================
--- incubator/ambari/branches/branch-1.2.4/ambari-web/app/controllers/main/apps/item_controller.js (original)
+++ incubator/ambari/branches/branch-1.2.4/ambari-web/app/controllers/main/apps/item_controller.js Wed Jun  5 17:08:21 2013
@@ -27,16 +27,11 @@ App.MainAppsItemController = Em.Controll
   content: [],
   jobsLoaded:false,
 
-  lastJobId : null,
   gettingJobs:function(){
     var currentId = this.get('content.id');
-    if(currentId == this.get('lastJobId')){
-      return;
-    }
     if(this.get('content.loadAllJobs')){
       return;
     }
-    this.set('lastJobId', currentId);
     var self = this;
 
     var url = App.testMode ? '/data/apps/jobs/'+ currentId +'.json' :