mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-15 04:42:05 +00:00
21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
|
'use strict';
|
||
|
const angular = require('angular');
|
||
|
|
||
|
export default angular.module('webAppApp.complexVar', [])
|
||
|
.directive('complexVar', function() {
|
||
|
return {
|
||
|
template: require('./complexVar.html'),
|
||
|
restrict: 'EA',
|
||
|
scope: {
|
||
|
members: '=',
|
||
|
path: '=',
|
||
|
type: '=',
|
||
|
inputWidth: '=',
|
||
|
tabgroup: '=?bind',
|
||
|
hostVars: '='
|
||
|
},
|
||
|
controller: 'ComplexVarController'
|
||
|
};
|
||
|
})
|
||
|
.name;
|