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

15 lines
348 B
JavaScript

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