diff options
author | Adam Coldrick <adam@sotk.co.uk> | 2015-09-26 10:26:09 +0100 |
---|---|---|
committer | Adam Coldrick <adam@sotk.co.uk> | 2015-09-28 20:12:38 +0100 |
commit | 00e24462beb1f972900561e527bc601affe59aca (patch) | |
tree | 520842c2abb75850d62a69b6ba24f8f6df2c4f90 /js | |
parent | c3f4797f90af344324bacbf4128279270be6d5db (diff) | |
download | ciat-ui-00e24462beb1f972900561e527bc601affe59aca.tar.gz |
Try to fix stuff
Diffstat (limited to 'js')
-rw-r--r-- | js/main.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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'); - }]); + } +]); |