aboutsummaryrefslogtreecommitdiffstats
path: root/docs/filter:currency.html
diff options
context:
space:
mode:
authorMisko Hevery2010-10-27 15:31:10 -0700
committerIgor Minar2010-11-03 09:47:22 -0700
commit659af29adbd041fbbbaf041ead53266210a61f4e (patch)
tree32a9ecff4482ae883321e2975fe74057795b21d1 /docs/filter:currency.html
parent1fe7e3a1302e948a31ab80d02ede6975c3bddd58 (diff)
downloadangular.js-659af29adbd041fbbbaf041ead53266210a61f4e.tar.bz2
jsdoc parser + generator + viewer + scenario runner
- parse jsdocs from source code - generate prerendered (markdown + mustache) partials - generate json - generate scenario runner for examples in docs - basic angular doc viewer
Diffstat (limited to 'docs/filter:currency.html')
-rw-r--r--docs/filter:currency.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/filter:currency.html b/docs/filter:currency.html
deleted file mode 100644
index bd277bb8..00000000
--- a/docs/filter:currency.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<h1>filter:currency</h1>
-
-<p>formats a number as a currency (ie $1,234.56)</p>
-
-<p>@format <em>expression</em> | currency</p>
-
-<p><example>
-<input type="text" name="amount" value="1234.56"/> <br/>
-{{amount | currency}}
-</example></p>
-
-<p><test>
- it('should init with 1234.56', function(){
- expect(bind('amount')).toEqual('$1,234.56');
- });
- it('should update', function(){
- element(':input[name=amount]').value('-1234');
- expect(bind('amount')).toEqual('-$1,234.00');
- expect(bind('amount')).toHaveColor('red');
- });
-</test></p>