diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'); }]); |