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

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