diff options
| author | Loic GUEGAN <loic@Manzerbredes.home> | 2016-05-04 22:46:40 +0200 |
|---|---|---|
| committer | Loic GUEGAN <loic@Manzerbredes.home> | 2016-05-04 22:46:40 +0200 |
| commit | a9e8c8e6644a83e81fb904ab0febf199421865ba (patch) | |
| tree | f4a2ea7cce9694fa8b44adaa98e01597694b5141 /client/js/services/Compute.js | |
| parent | cddd9682e6d6b7c5fd42215dec533c3c38da8eba (diff) | |
Correct bug
Diffstat (limited to 'client/js/services/Compute.js')
| -rw-r--r-- | client/js/services/Compute.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/js/services/Compute.js b/client/js/services/Compute.js index ee2210c..992f20c 100644 --- a/client/js/services/Compute.js +++ b/client/js/services/Compute.js @@ -112,8 +112,9 @@ mainApp.factory('Compute', ['$http', 'Identity', function ($http, Identity) { // Wait and handle the response result.then(function (response) { - callback(); - console.log(response.data.Error) + console.log(response.data) + callback(); + }, function (response) { console.log("error") callback(); |
