bansho/app/table/table.js
Frédéric Vachon ef64445d9c table skeleton
2015-01-19 18:10:50 -05:00

17 lines
405 B
JavaScript

'use strict';
angular.module('adagios.table', ['ngRoute', 'adagios.table.entry', 'adagios.live'])
.controller('TableCtrl', ['$scope', '$http', 'GetServices', function ($scope, $http, GetServices) {
$scope.entries = GetServices;
}])
.directive('servicetable', function () {
return {
restrict: 'E',
templateUrl: "table/table.html"
};
});