Thibault Cohen fddd4693e3 Add css for host status page
Change-Id: I65e18724b9cd4d988a47f5b9c048ea183d961b29
2015-06-01 16:22:00 -04:00

18 lines
441 B
JavaScript

'use strict';
angular.module('bansho.host.live', [])
.controller('HostLiveCtrl', ['$scope', function ($scope) {
angular.noop();
}])
.directive('banshoHostLive', function () {
return {
restrict: 'E',
compile: function (scope, element, attrs) {
scope.host = attrs.host;
},
templateUrl: 'components/host/host_live/host_live.html'
};
});