diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index 0bd2d5c6..0b98f588 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -15,14 +15,15 @@ * * * @example - + -
+

default currency symbol ($): {{amount | currency}}
custom currency identifier (USD$): {{amount | currency:"USD$"}} @@ -74,14 +75,15 @@ function currencyFilter($locale) { * @returns {string} Number rounded to decimalPlaces and places a “,” after each third digit. * * @example - + -
+
Enter number:
Default formatting: {{val | number}}
No fractions: {{val | number:0}}