aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial/step_10.ngdoc
diff options
context:
space:
mode:
authorVojta Jina2011-06-07 23:13:44 +0200
committerIgor Minar2011-06-07 16:11:00 -0700
commite0ee3a0726f43972244e400863a6dcf567f00a0e (patch)
tree4da26a12dc0598f5e52c8a61c0c432fd4ed5f7fe /docs/content/tutorial/step_10.ngdoc
parente670a812fa85dd6a63b0d128815f9c0682ffd177 (diff)
downloadangular.js-e0ee3a0726f43972244e400863a6dcf567f00a0e.tar.bz2
Update latest docs content from gdocs
Diffstat (limited to 'docs/content/tutorial/step_10.ngdoc')
-rw-r--r--docs/content/tutorial/step_10.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_10.ngdoc b/docs/content/tutorial/step_10.ngdoc
index 3a8dbd38..109f5b77 100644
--- a/docs/content/tutorial/step_10.ngdoc
+++ b/docs/content/tutorial/step_10.ngdoc
@@ -42,7 +42,7 @@ function PhoneDetailCtrl($xhr) {
$xhr('GET', 'phones/' + self.params.phoneId + '.json', function(code, response) {
self.phone = response;
- self.mainImageUrl = response.images;
+ self.mainImageUrl = response.images[0];
});