aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/concepts.ngdoc
diff options
context:
space:
mode:
authorTobias Bosch2013-11-07 14:14:57 -0800
committerTobias Bosch2013-11-07 14:14:57 -0800
commit36621402015485613888158dc7ba29f4ff92a7e2 (patch)
treede6bcfa749c8c5db20bc8e46fc9aa666fdafe40d /docs/content/guide/concepts.ngdoc
parented8640b96463df8a8f9e4503095bd89916a120c5 (diff)
downloadangular.js-36621402015485613888158dc7ba29f4ff92a7e2.tar.bz2
docs(guide/filter): Refactor filter guide docs
This refactors the filter guide docs into a single file. Also removes out of date references to the fact that Angular used to enhance Arrays while evaluating expressions.
Diffstat (limited to 'docs/content/guide/concepts.ngdoc')
-rw-r--r--docs/content/guide/concepts.ngdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc
index d0c2beca..8cf1bb74 100644
--- a/docs/content/guide/concepts.ngdoc
+++ b/docs/content/guide/concepts.ngdoc
@@ -86,7 +86,7 @@ in the rest of the documentation.
Applied to the example above, the markup directs Angular to "take the data we got from the input widgets
and multiply them together".
-The example above also contains a <a name="filter">"{@link dev_guide.templates.filters filter}"</a>.
+The example above also contains a <a name="filter">"{@link filter filter}"</a>.
A filter formats the value of an expression for display to the user.
In the example above, the filter {@link api/ng.filter:currency `currency`} formats a number
into an output that looks like money.
@@ -144,7 +144,7 @@ allow to enter and calculate the costs in different currencies and also pay the
<span ng-repeat="c in invoice.currencies">
{{invoice.total(c) | currency:c}}
</span>
- <button ng-click="invoice.pay()">Pay</button>
+ <button class="btn" ng-click="invoice.pay()">Pay</button>
</div>
</div>
</file>
@@ -244,7 +244,7 @@ Let's refactor our example and move the currency conversion into a service in an
<span ng-repeat="c in invoice.currencies">
{{invoice.total(c) | currency:c}}
</span>
- <button ng-click="invoice.pay()">Pay</button>
+ <button class="btn" ng-click="invoice.pay()">Pay</button>
</div>
</div>
</file>
@@ -370,7 +370,7 @@ The following example shows how this is done with Angular:
<span ng-repeat="c in invoice.currencies">
{{invoice.total(c) | currency:c}}
</span>
- <button ng-click="invoice.pay()">Pay</button>
+ <button class="btn" ng-click="invoice.pay()">Pay</button>
</div>
</div>
</file>