From 3d6f539592cb2171ed67b3c2b0246fd72ddfaa0d Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Thu, 28 Jan 2016 11:20:53 +0100 Subject: Minor Cleanup --- afm-client/app/Frontend/pages/Dashboard/DashboardModule.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'afm-client/app/Frontend/pages/Dashboard') diff --git a/afm-client/app/Frontend/pages/Dashboard/DashboardModule.js b/afm-client/app/Frontend/pages/Dashboard/DashboardModule.js index c075372..83408a5 100644 --- a/afm-client/app/Frontend/pages/Dashboard/DashboardModule.js +++ b/afm-client/app/Frontend/pages/Dashboard/DashboardModule.js @@ -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(); }; -- cgit 1.2.3-korg