Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
docs(guide/concepts): remove div-clear-tags that break the formatting
Browse files Browse the repository at this point in the history
Closes #3974
  • Loading branch information
Silwing authored and petebacondarwin committed Sep 11, 2013
1 parent f86395a commit c0886be
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions docs/content/guide/concepts.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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">
Expand All @@ -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">
Expand Down Expand Up @@ -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">
Expand Down Expand Up @@ -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

Expand All @@ -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'] ">
Expand Down Expand Up @@ -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', [])
Expand Down

0 comments on commit c0886be

Please sign in to comment.