From 33dba44b7b0c63e4107b66bb4bc404e63303b626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Randi=20Hiller=C3=B8e?= Date: Wed, 11 Sep 2013 21:16:17 +0200 Subject: [PATCH] docs(guide/concepts): remove div-clear-tags breaking the formatting --- docs/content/guide/concepts.ngdoc | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index 06a06885eda1..bab511bdb414 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -45,8 +45,6 @@ This is how we get the ball rolling (refer to the diagram and example below): 9. The `{{name}}` {@link api/ng.$interpolate interpolates} the expression to `Hello World!` -
-

Hello {{name}}!

@@ -126,8 +124,6 @@ user enters text into the text field. the JavaScript execution context. 7. The browser re-renders the view with update text. -
-
@@ -147,8 +143,6 @@ The following example demonstrates how the `name` {@link guide/expression expres into a different value depending on which scope it is evaluated in. The example is followed by a diagram depicting the scope boundaries. -
-
@@ -204,8 +198,6 @@ The separation of the controller and the view is important because: controller. This is important for re-skinning, device specific views (i.e. mobile vs desktop), and testability. -
-
@@ -239,10 +231,6 @@ to inherit from or special accessor methods for accessing or changing the model. primitive, object hash, or a full object Type. In short the model is a plain JavaScript object. -
-
- - # View @@ -269,9 +257,6 @@ rendering the view compared to most other templating systems. continuously updating view which does not need template model re-merging. Your model becomes the single source-of-truth for your view. -
-
-
@@ -369,7 +354,6 @@ api/AUTO.$injector injector} asks the instance factory to create a new instance. A {@link api/angular.Module module} is a way to configure the injector's instance factory, known as a {@link api/AUTO.$provide provider}. -
   // Create a module
   var myModule = angular.module('myModule', [])