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_02.ngdoc | 64 -------------------------------------
1 file changed, 64 deletions(-)
(limited to 'docs/content/tutorial/step_02.ngdoc')
diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc
index 1715990b..abed3977 100644
--- a/docs/content/tutorial/step_02.ngdoc
+++ b/docs/content/tutorial/step_02.ngdoc
@@ -2,50 +2,36 @@
@name Tutorial: 2 - Angular Template
@description
-
-
-
Now it's time to make this web page dynamic with angular. We'll also add a test that verifies the
code for the controller we are going to add.
-
There are many ways to structure the code for an application. With angular, we encourage the use of
{@link http://en.wikipedia.org/wiki/Model–View–Controller the MVC design pattern} to decouple the
code and separate concerns. With that in mind, let's use a little angular and JavaScript to add
model, view, and controller components to our app.
-
-
-
-
The app now contains a list with 3 phones.
-
The most important changes are listed below. You can see the full diff on {@link
https://github.com/angular/angular-phonecat/compare/step-1...step-2 GitHub}:
-
-
## Template for the View
-
The __view__ component is constructed by angular from this template:
-
__`app/index.html`:__
...
-
-
{{phone.name}}
@@ -53,27 +39,22 @@ __`app/index.html`:__
-