mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-13 13:21:52 +00:00
20 lines
451 B
JavaScript
20 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;
|