summaryrefslogtreecommitdiff
path: root/js/main.js
blob: f44214bb0a5df7ba28f4d79657b743eb7e7b57f9 (plain)
1
2
3
4
5
6
var app = angular.module('ciat', []);

app.controller('VisualisationController', ['$scope', '$http'
    function($scope, $http) {
        $scope.builders = $http.get('http://ciat.baserock.org:8010/json/builders');
    }]);