2015-03-26 12:43:19 -04:00

15 lines
327 B
JavaScript

'use strict';
angular.module('adagios.host.load', [])
.controller('HostLoadCtrl', ['$scope', function ($scope) {
angular.noop();
}])
.directive('adgHostLoad', function () {
return {
restrict: 'E',
templateUrl: 'components/host/host_load/host_load.html'
};
});