This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
I'm using custom directive to build my form.
Like <my-input ng-model="vm.value" required="true" minlength="6">
This example shows that in validation required is bind to ng-model and works great. But minlength or ng-minlength is different - I suppose it works only with input tag.
Can You bing ng-minlength with ng-model?
Should I make my own validator?