Files
awx/awx/ui/client/lib/components/badge/badge.directive.js
2017-06-12 09:53:11 -04:00

13 lines
245 B
JavaScript

function atBadge () {
return {
restrict: 'E',
transclude: true,
templateUrl: 'static/partials/components/badge/badge.partial.html',
scope: {
config: '='
}
};
}
export default atBadge;