diff options
| author | Igor Minar | 2011-06-06 14:44:49 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-06-06 23:10:28 -0700 | 
| commit | 3069566073ef07700dc29714f74dd6f2069caf90 (patch) | |
| tree | d406f77758faf780c32bf14b5bc2be7c960a7664 /src/filters.js | |
| parent | bd9a7b9fd71147113a08d8e5736024a8cd6f1979 (diff) | |
| download | angular.js-3069566073ef07700dc29714f74dd6f2069caf90.tar.bz2 | |
api doc fixes from ken
Diffstat (limited to 'src/filters.js')
| -rw-r--r-- | src/filters.js | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/src/filters.js b/src/filters.js index f7a4909d..d77adc57 100644 --- a/src/filters.js +++ b/src/filters.js @@ -1,5 +1,31 @@  /**   * @workInProgress + * @ngdoc overview + * @name angular.filter + * @description + * + * Filters are used for formatting data displayed to the user. + * + * The general syntax in templates is as follows: + * + *         {{ expression | [ filter_name ] }} + * + * Following is the list of built-in angular filters: + * + * * {@link angular.Filter.currency currency} + * * {@link angular.Filter.date date} + * * {@link angular.Filter.html html} + * * {@link angular.Filter.json json} + * * {@link angular.Filter.linky linky} + * * {@link angular.Filter.lowercase lowercase} + * * {@link angular.Filter.number number} + * * {@link angular.Filter.uppercase uppercase} + * + * For more information about how angular filters work, and how to create your own filters, see {@link guide/filters Understanding Angular Filters} in the angular Developer Guide. + */ + +/** + * @workInProgress   * @ngdoc filter   * @name angular.filter.currency   * @function | 
