From fdf17d729fa7651e88dc5f27c40b8de875a34a55 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 4 Apr 2012 15:56:12 -0700 Subject: fix(docs): remove ngModelInstant from all examples just fixing leftover code after the removal of ngModelInstant --- .../api/angular.module.ng.$compileProvider.directive.ngdoc | 2 +- docs/content/cookbook/form.ngdoc | 8 ++++---- docs/content/misc/started.ngdoc | 2 +- docs/src/templates/index.html | 2 +- src/ng/directive/ngBind.js | 6 +++--- src/ng/filter/filter.js | 8 ++++---- src/ng/filter/filters.js | 6 +++--- src/ng/filter/limitTo.js | 2 +- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc b/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc index 43b03ae4..f66aa9a1 100644 --- a/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc +++ b/docs/content/api/angular.module.ng.$compileProvider.directive.ngdoc @@ -38,7 +38,7 @@ the following example. }
- Hello
+ Hello
<span ng:bind="name">
<span ng_bind="name">
<span ng-bind="name">
diff --git a/docs/content/cookbook/form.ngdoc b/docs/content/cookbook/form.ngdoc index 175a7275..b335cecf 100644 --- a/docs/content/cookbook/form.ngdoc +++ b/docs/content/cookbook/form.ngdoc @@ -38,9 +38,9 @@ allow a user to enter data.


-
- , -
+ , +

@@ -54,7 +54,7 @@ allow a user to enter data. - + [ X ]

diff --git a/docs/content/misc/started.ngdoc b/docs/content/misc/started.ngdoc index 0559e401..76bff181 100644 --- a/docs/content/misc/started.ngdoc +++ b/docs/content/misc/started.ngdoc @@ -65,7 +65,7 @@ This example demonstrates angular's two-way data binding: - Your name: + Your name:
Hello {{yourname || 'World'}}!
diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index d7470461..bb8d2f1e 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -106,7 +106,7 @@ - Search: + Search: @@ -50,9 +50,9 @@
NamePhone

- Any:
- Name only
- Phone only
+ Any:
+ Name only
+ Phone only
diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index 19f79ad1..d6efc418 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -23,7 +23,7 @@ }
-
+
default currency symbol ($): {{amount | currency}}
custom currency identifier (USD$): {{amount | currency:"USD$"}}
@@ -74,7 +74,7 @@ function currencyFilter($locale) { }
- Enter number:
+ Enter number:
Default formatting: {{val | number}}
No fractions: {{val | number:0}}
Negative number: {{-val | number:4}} @@ -468,7 +468,7 @@ var uppercaseFilter = valueFn(uppercase); }
- Snippet: + Snippet:
NamePhone
diff --git a/src/ng/filter/limitTo.js b/src/ng/filter/limitTo.js index af94b2f4..0efb80f2 100644 --- a/src/ng/filter/limitTo.js +++ b/src/ng/filter/limitTo.js @@ -31,7 +31,7 @@ }
- Limit {{numbers}} to: + Limit {{numbers}} to:

Output: {{ numbers | limitTo:limit }}

-- cgit v1.2.3
Filter