From a09162b81f23cd295d7bd6481398993faa8dfdeb Mon Sep 17 00:00:00 2001 From: Driptaroop Das Date: Mon, 21 Jan 2019 13:06:28 +0530 Subject: replaced named func with anonymous func replaced named function with anonymous function. While named function expressions might be useful for debugging purposes, some browsers do not support them correctly (for example Internet Explorer 8). Issue-ID: VID-389 Change-Id: Ia0943a1bd765b1b9d5909c68af97ae11b1060255 Signed-off-by: Driptaroop Das --- .../webapp/app/vid/scripts/controller/InstantiationController.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js') diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js index 06622cfbc..366965c8f 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/InstantiationController.js @@ -3,6 +3,7 @@ * VID * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1368,11 +1369,11 @@ Private metthods function _setPnf(data) { // data is the $scope.service.instance object return PnfService.getPnfs(data) .then( - function success(response) { + function (response) { return response.data; // * can add here changes on the data that are needed to the view ( filter, ect..) }, - function error(error) { + function (error) { console.error(error); } ); @@ -1382,11 +1383,11 @@ Private metthods function _setCr(data) { // data is the $scope.service.instance object return CrService.getCr(data) .then( - function success(response) { + function (response) { return response.data.results; // * can add here changes on the data that are needed to the view ( filter, ect..) }, - function error(error) { + function (error) { console.error(error); } ); -- cgit 1.2.3-korg