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