bansho/app/components/host/host_cpu/host_cpu.js
aviau 8bb198e6f8 Refactored Surveil API Client
Change-Id: Ic8f4f196157073ddba1e0f3d00f2f2cca8ea28ad
2015-05-20 16:59:19 -04:00

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'
};
});