bansho/app/table/entry/entry.js
2015-01-20 14:29:10 -05:00

19 lines
623 B
JavaScript

'use strict';
angular.module('adagios.table.entry', ['adagios.table.entry.column_duration',
'adagios.table.entry.column_host',
'adagios.table.entry.column_last_check',
'adagios.table.entry.column_service_check'
])
.controller('EntryCtrl', ['$scope', '$http', function ($scope, $http) {
return;
}])
.directive('entry', function () {
return {
restrict: 'E',
templateUrl: "table/entry/entry.html"
};
});