You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 'master' of https://github.com/angular/angular.js:
fix($rootScope): ng-repeat can't handle NaN values. angular#4605
test(ngMock): workaround issue with negative timestamps
fix(select): avoid checking option element selected properties in render
fix(orderBy): support string predicates containing non-ident characters
fix(ngCookie): convert non-string values to string
fix(ngTouch): update workaround for desktop Webkit quirk
fix($httpBackend): don't error when JSONP callback called with no parameter
fix($$RAFProvider): check for webkitCancelRequestAnimationFrame
docs(tutorial/step_05): fix services link
docs(tutorial/step_05): removed stray "a"
style(ngMocks): remove ws
feat(ngMock.$httpBackend): added support for function as URL matcher
feat($compile): add support for $observer deregistration
fix(Scope): $watchCollection should call listener with oldValue
chore(log): add `log.empty()` method to the testing logger
Copy file name to clipboardexpand all lines: docs/content/tutorial/step_05.ngdoc
+1-2
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
9
9
Enough of building an app with three phones in a hard-coded dataset! Let's fetch a larger dataset
10
-
from our server using one of Angular's built-in {@link guide/dev_guide.services services} called {@link
10
+
from our server using one of Angular's built-in {@link guide/services services} called {@link
11
11
ng.$http $http}. We will use Angular's {@link guide/di dependency
12
12
injection (DI)} to provide the service to the `PhoneListCtrl` controller.
13
13
@@ -20,7 +20,6 @@ You should now see a list of 20 phones.
20
20
The most important changes are listed below. You can see the full diff on [GitHub](https://github.com/angular/angular-phonecat/compare/step-4...step-5):
21
21
22
22
## Data
23
-
a
24
23
The `app/phones/phones.json` file in your project is a dataset that contains a larger list of phones
0 commit comments