Update project structure

This commit is contained in:
gconsidine
2017-05-10 17:42:52 -04:00
parent 5553a6bcda
commit 725fd15519
82 changed files with 134 additions and 1078 deletions

View File

@@ -0,0 +1,22 @@
function link (scope, el, attrs, form) {
form.use('input', scope, el);
}
function atInputText (pathService) {
return {
restrict: 'E',
transclude: true,
replace: true,
require: '^^at-form',
templateUrl: pathService.getPartialPath('components/input/text'),
link,
scope: {
config: '=',
col: '@'
}
};
}
atInputText.$inject = ['PathService'];
export default atInputText;