@@ -14,20 +14,20 @@ The full tutorial can be found at http://docs.angularjs.org/tutorial.
14
14
15
15
### Git
16
16
17
- - A good place to learn about setting up git is [ here] [ git-github ]
18
- - Git [ home] [ git-home ] (download, documentation)
17
+ - A good place to learn about setting up git is [ here] [ git-github ] .
18
+ - Git [ home] [ git-home ] (download, documentation).
19
19
20
20
### Node.js and Tools
21
21
22
22
- Get [ Node.js] [ node-download ] .
23
- - Install the tool dependencies (` npm install ` )
23
+ - Install the tool dependencies (` npm install ` ).
24
24
25
25
26
26
## Workings of the application
27
27
28
28
- The application filesystem layout structure is based on the [ angular-seed] project.
29
29
- There is no dynamic backend (no application server) for this application. Instead we fake the
30
- an application server by fetching static json files.
30
+ application server by fetching static json files.
31
31
- Read the Development section at the end to familiarize yourself with running and developing
32
32
an angular application.
33
33
@@ -41,8 +41,8 @@ To see the changes which between any two lessons use the git diff command.
41
41
42
42
### step-0
43
43
44
- - Add ngApp directive to bootstrap the app
45
- - Add simple template with an expression
44
+ - Add ngApp directive to bootstrap the app.
45
+ - Add simple template with an expression.
46
46
47
47
48
48
### step-1
@@ -54,12 +54,12 @@ To see the changes which between any two lessons use the git diff command.
54
54
### step-2
55
55
56
56
- Convert the static html list into dynamic one by:
57
- - creating ` PhoneListCtrl ` controller for the application
57
+ - creating ` PhoneListCtrl ` controller for the application.
58
58
- extracting the data from HTML, moving it into the controller as an in-memory dataset.
59
59
- converting the static HTML document into an Angular template with the use of the ` ngRepeat `
60
60
directive which iterates over the dataset of phones.
61
61
` ngRepeat ` clones its contents for each instance in the dataset and renders it into the view.
62
- - Add a simple unit test to show off how to write tests and run them with Karma
62
+ - Add a simple unit test to show off how to write tests and run them with Karma.
63
63
64
64
65
65
### step-3
0 commit comments