@eform/ng-formio-builder
Version:
The Angular.js form builder component.
21 lines (18 loc) • 485 B
JavaScript
module.exports = function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (scope, element, attrs, ctrl) {
scope.$watch('component.label', function () {
if(ctrl.$invalid) {
element[0].parentNode.classList.add('has-warning');
ctrl.$validate();
}
else {
element[0].parentNode.classList.remove('has-warning');
ctrl.$validate();
}
}, true);
}
};
}