mirror of
				https://github.com/mmumshad/ansible-playable.git
				synced 2025-03-09 23:38:54 +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;
 |