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

13 lines
259 B
JavaScript

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