aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial/step_06.ngdoc
diff options
context:
space:
mode:
authorKenneth R. Culp2011-05-02 16:40:31 -0700
committerIgor Minar2011-06-06 22:28:38 -0700
commit9d9117384f7879be56e5b905f3533b89983efa4b (patch)
treea3b2b8cdb6c573e1856af8393a9afde0e8484c0d /docs/content/tutorial/step_06.ngdoc
parent525e444a0faf41ae58499c5d3ab0ae32a05895b5 (diff)
downloadangular.js-9d9117384f7879be56e5b905f3533b89983efa4b.tar.bz2
Latest greatest tutorial udpates.
Diffstat (limited to 'docs/content/tutorial/step_06.ngdoc')
-rwxr-xr-xdocs/content/tutorial/step_06.ngdoc22
1 files changed, 16 insertions, 6 deletions
diff --git a/docs/content/tutorial/step_06.ngdoc b/docs/content/tutorial/step_06.ngdoc
index 91862b73..19d0edbc 100755
--- a/docs/content/tutorial/step_06.ngdoc
+++ b/docs/content/tutorial/step_06.ngdoc
@@ -19,15 +19,15 @@ about the phones in the catalog.
1. Reset your workspace to Step 6 using:
- git checkout --force step-6
+ git checkout --force step-6
-or
+ or
- ./goto_step.sh 6
+ ./goto_step.sh 6
2. Refresh your browser or check the app out on {@link
-http://angular.github.com/angular-phonecat/step-6/app our server}. You should now see links and
-images of the phones in the list.
+http://angular.github.com/angular-phonecat/step-6/app angular's server}. You should now see links
+and images of the phones in the list.
The most important changes are listed below. You can see the full diff on {@link
https://github.com/angular/angular-phonecat/compare/step-5...step-6
@@ -102,7 +102,17 @@ can see them running on {@link
http://angular.github.com/angular-phonecat/step-6/test/e2e/runner.html
angular's server}.
-Now that you have added phone images and links, go to Step 7 to learn about angular layout
+# Experiments
+
+* Replace the `ng:src` directive with a plain old `<src>` attribute, and using tools such as
+Firebug, or Chrome's Web Inspector, or by inspecting the webserver access logs, confirm that the
+app is indeed making an extraneous request to `/app/%7B%7Bphone.imageUrl%7D%7D` (or
+`/app/index.html/{{phone.imageUrl}}`).
+
+
+# Summary
+
+Now that you have added phone images and links, go to step 7 to learn about angular layout
templates and how angular makes it easy to create applications that have multiple views.