From 6d53808475c9e7d952a9d5e13049433f8cba6912 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 9 Nov 2010 15:56:27 -0800 Subject: 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 --- src/validators.js | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/validators.js') 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 - *
-   * function myValidator (inputToValidate, validationDone) {
-   *  // simulate delayed response, validate on even input length
-   *  setTimeout(function(){
-   *    validationDone(inputToValidate.length % 2);
-   *  }, 500);
-   * };
-   * 
- * * @example *