bansho/app/components/host/host_cpu/host_cpu.js

13 lines
356 B
JavaScript

'use strict';
angular.module('bansho.host.cpu', ['bansho.surveil'])
.directive('banshoHostCpu', function () {
return {
restrict: 'E',
compile: function (scope, element, attrs) {
scope.host = attrs.host;
},
templateUrl: 'components/host/host_cpu/host_cpu.html'
};
});