mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-22 08:43:36 -05:00
13 lines
259 B
JavaScript
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;
|