diff options
| author | Randi Hillerøe | 2013-09-11 21:16:17 +0200 |
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-11 20:37:34 +0100 |
| commit | c0886be148be0fda0cb39eab410c7f3ef9a150b1 (patch) | |
| tree | 8c7602fc588df7db3590cf246e6b68bf1b906137 /docs/content | |
| parent | f86395aadfec515899dbc49b77c2e7da61271d36 (diff) | |
| download | angular.js-c0886be148be0fda0cb39eab410c7f3ef9a150b1.tar.bz2 | |
docs(guide/concepts): remove div-clear-tags that break the formatting
Closes #3974
Diffstat (limited to 'docs/content')
| -rw-r--r-- | docs/content/guide/concepts.ngdoc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index 06a06885..bab511bd 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!` -<div class="clear"> -</div> <example> <file name="index.html"> <p ng-init=" name='World' ">Hello {{name}}!</p> @@ -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. -<div class="clear"> -</div> <example> <file name="index.html"> <input ng-model="name"> @@ -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. -<div class="clear"> -</div> <div class="show-scope"> <example> <file name="index.html"> @@ -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. -<div class="clear"> -</div> <example> <file name="index.html"> <div ng-controller="MyCtrl"> @@ -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. -<div class="clear"> -</div> - - <a name="view"></a> # 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. -<div class="clear"> -</div> - <example> <file name="index.html"> <div ng-init="list = ['Chrome', 'Safari', 'Firefox', 'IE'] "> @@ -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}. -<div class='clear'></div> <pre> // Create a module var myModule = angular.module('myModule', []) |
