summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js
index 162809e..6e67179 100644
--- a/js/main.js
+++ b/js/main.js
@@ -33,7 +33,8 @@ app.controller('VisualisationController', function($scope, $http, $q, $interval)
$http.get(buildsPath).then(function(response) {
var details = {
success: checkInArray(response.data.text, 'successful'),
- failed: checkInArray(response.data.text, 'failed')
+ failed: checkInArray(response.data.text, 'failed'),
+ logs: response.data.logs
};
$scope.steps.push({
name: key,