aboutsummaryrefslogtreecommitdiffstats
path: root/src/validators.js
diff options
context:
space:
mode:
authorIgor Minar2010-11-09 15:56:27 -0800
committerIgor Minar2010-11-09 22:33:27 -0800
commit6d53808475c9e7d952a9d5e13049433f8cba6912 (patch)
treefced2e7f4ca825bc0de7dbb566f9978d3082c4c6 /src/validators.js
parenta7e8a503fd088f5b01e8b14de61dfc60c1f13451 (diff)
downloadangular.js-6d53808475c9e7d952a9d5e13049433f8cba6912.tar.bz2
improve jsdocs
- improve json filter example - improve filter overview doc - improving validator overview jsdocs - simplify number filter examples and make them live + add specs - various doc fixes
Diffstat (limited to 'src/validators.js')
-rw-r--r--src/validators.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/validators.js b/src/validators.js
index f4874e68..3fcefccb 100644
--- a/src/validators.js
+++ b/src/validators.js
@@ -321,16 +321,6 @@ extend(angularValidator, {
*
* @css ng-input-indicator-wait, ng-validation-error
*
- * @exampleDescription
- * <pre>
- * function myValidator (inputToValidate, validationDone) {
- * // simulate delayed response, validate on even input length
- * setTimeout(function(){
- * validationDone(inputToValidate.length % 2);
- * }, 500);
- * };
- * </pre>
- *
* @example
* <script>
* function myValidator(inputToValidate, validationDone) {