We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f152da commit bfc8d88Copy full SHA for bfc8d88
1 file changed
API.md
@@ -289,3 +289,13 @@ angular.module('yourApp', ['validation'])
289
}]);
290
```
291
292
+### **Customizable Initial Validation**<br/>
293
+Intial Validation for the input false. You can make it to true!
294
+
295
+```html
296
+<!-- default fase -->
297
+<input type="text" name="firstName" ng-model="firstName" validator="required"/>
298
299
+<!-- set to true -->
300
+<input type="text" name="firstName" ng-model="firstName" validator="required" initial-validity="true"/>
301
+```
0 commit comments