@@ -31,7 +31,7 @@ The full tutorial can be found at https://docs.angularjs.org/tutorial.
31
31
- There is no dynamic backend (no application server) for this application. Instead we fake the
32
32
application server by fetching static JSON files.
33
33
- Read the _ Development_ section at the end to familiarize yourself with running and developing
34
- an Angular application.
34
+ an AngularJS application.
35
35
36
36
37
37
## Commits / Tutorial Outline
@@ -59,7 +59,7 @@ git diff step-?..step-?
59
59
- Add a stylesheet file ('app/app.css').
60
60
- Add a static list with two phones.
61
61
62
- ### step-2 _ Angular Templates_
62
+ ### step-2 _ AngularJS Templates_
63
63
64
64
- Convert the static phone list to dynamic by:
65
65
- Creating a ` PhoneListController ` controller.
@@ -239,7 +239,7 @@ app/ --> all the source code of the app (along with unit tes
239
239
phones/... --> static JSON files with phone data (used to fake a backend API)
240
240
app.animations.css --> hooks for running CSS animations with `ngAnimate`
241
241
app.animations.js --> hooks for running JS animations with `ngAnimate`
242
- app.config.js --> app-wide configuration of Angular services
242
+ app.config.js --> app-wide configuration of AngularJS services
243
243
app.css --> default stylesheet
244
244
app.module.js --> the main app module
245
245
index.html --> app layout file (the main HTML template file of the app)
@@ -251,7 +251,7 @@ e2e-tests/ --> config and source files for e2e tests
251
251
node_modules/... --> development tools (fetched using `npm`)
252
252
253
253
scripts/ --> handy scripts
254
- private/... --> private scripts used by the Angular Team to maintain this repo
254
+ private/... --> private scripts used by the AngularJS Team to maintain this repo
255
255
update-repo.sh --> script for pulling down the latest version of this repo (!!! DELETES ALL CHANGES YOU HAVE MADE !!!)
256
256
257
257
bower.json --> Bower specific metadata, including client-side dependencies
0 commit comments