From b842642b574a2b95c53b791308ed1bf8ff9d304d Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 15 Jun 2011 22:31:40 -0700 Subject: docs - stripping extra new lines --- docs/content/tutorial/step_06.ngdoc | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'docs/content/tutorial/step_06.ngdoc') diff --git a/docs/content/tutorial/step_06.ngdoc b/docs/content/tutorial/step_06.ngdoc index e7fa1660..aa628a5d 100644 --- a/docs/content/tutorial/step_06.ngdoc +++ b/docs/content/tutorial/step_06.ngdoc @@ -2,41 +2,29 @@ @name Tutorial: 6 - Templating Links & Images @description - - - In this step, you will add thumbnail images for the phones in the phone list, and links that, for now, will go nowhere. In subsequent steps you will use the links to display additional information about the phones in the catalog. - - - - 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 GitHub}: - - ## Data - Note that the `phones.json` file contains unique ids and image urls for each of the phones. The urls point to the `app/img/phones/` directory. - __`app/phones/phones.json`__ (sample snippet):
  [
@@ -52,11 +40,8 @@ __`app/phones/phones.json`__ (sample snippet):
 
- - ## Template - __`app/index.html`:__
 ...
@@ -70,13 +55,11 @@ __`app/index.html`:__
 ...
 
- To dynamically generate links that will in the future lead to phone detail pages, we used the now-familiar {@link guide/dev_guide.compiler.markup double-curly brace markup} in the `href` attribute values. In step 2, we added the `{{phone.name}}` binding as the element content. In this step the '{{phone.id}}' binding is used in the element attribute. - We also added phone images next to each record using an image tag with the {@link api/angular.directive.ng:src ng:src} directive. That directive prevents the browser from treating the angular `{{ exppression }}` markup literally, which it would have done if we had only specified @@ -84,11 +67,8 @@ an attribute binding in a regular `src` attribute (` - -- cgit v1.2.3