summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/main.js b/js/main.js
index 760ab23..f44214b 100644
--- a/js/main.js
+++ b/js/main.js
@@ -1,6 +1,6 @@
var app = angular.module('ciat', []);
-app.controller('VisualisationController', ['$scope',
- function($scope) {
+app.controller('VisualisationController', ['$scope', '$http'
+ function($scope, $http) {
$scope.builders = $http.get('http://ciat.baserock.org:8010/json/builders');
}]);