8bb198e6f8
Change-Id: Ic8f4f196157073ddba1e0f3d00f2f2cca8ea28ad
13 lines
356 B
JavaScript
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'
|
|
};
|
|
});
|