17 lines
405 B
JavaScript
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"
|
|
};
|
|
});
|
|
|