mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-03 14:41:49 -05:00
23 lines
506 B
JavaScript
23 lines
506 B
JavaScript
const templateUrl = require('~components/switch/switch.partial.html');
|
|
|
|
function atSwitch () {
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
templateUrl,
|
|
scope: {
|
|
hide: '=',
|
|
onToggle: '&',
|
|
switchOn: '=',
|
|
switchDisabled: '=',
|
|
tooltip: '=',
|
|
tooltipString: '@',
|
|
tooltipPlacement: '@',
|
|
tooltipContainer: '@',
|
|
tooltipWatch: '='
|
|
},
|
|
};
|
|
}
|
|
|
|
export default atSwitch;
|