Minor Cleanup
[src/app-framework-demo.git] / afm-client / app / Frontend / pages / Dashboard / DashboardModule.js
index c075372..83408a5 100644 (file)
@@ -15,11 +15,7 @@ angular.module('DashboardModule', ['SubmitButton', 'TokenRefresh', 'AppliButton'
         scope.appliIDs =[]; // array to hold applications ID
         scope.appliStore={}; // array to hold applications json description
 
-        scope.AppliCB = function (appliID) {
-            console.log ("Application Clicked ID=[%s]", appliID);
-            
-        };
-        
+       
         scope.AppliCB = function(appliID, action, response) {
                 // Action is done within Widget Controller only update debug UI zone
                 scope.request  = action; 
@@ -59,8 +55,14 @@ angular.module('DashboardModule', ['SubmitButton', 'TokenRefresh', 'AppliButton'
             });            
         };
         
-        scope.FileUploaded = function (status) {
+        scope.FileUploaded = function (response) {
             console.log ("file Uploaded");
+            // Cannot display post results as GetRunnable will overload them
+            scope.request  = "/api/afm-main/runnable"; 
+            scope.response = response.headers;
+            scope.errcode  = response.status;
+            
+            // everything looks OK update app list
             scope.GetRunnables();
         };