Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 10016ab

Browse files
Silwingpetebacondarwin
authored andcommitted
docs(guide/concepts): remove div-clear-tags that break the formatting
Closes angular#3974
1 parent 69dc003 commit 10016ab

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

docs/content/guide/concepts.ngdoc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ This is how we get the ball rolling (refer to the diagram and example below):
4545
9. The `{{name}}` {@link api/ng.$interpolate interpolates} the expression to
4646
`Hello World!`
4747

48-
<div class="clear">
49-
</div>
5048
<example>
5149
<file name="index.html">
5250
<p ng-init=" name='World' ">Hello {{name}}!</p>
@@ -126,8 +124,6 @@ user enters text into the text field.
126124
the JavaScript execution context.
127125
7. The browser re-renders the view with update text.
128126

129-
<div class="clear">
130-
</div>
131127
<example>
132128
<file name="index.html">
133129
<input ng-model="name">
@@ -147,8 +143,6 @@ The following example demonstrates how the `name` {@link guide/expression expres
147143
into a different value depending on which scope it is evaluated in. The example is followed by
148144
a diagram depicting the scope boundaries.
149145

150-
<div class="clear">
151-
</div>
152146
<div class="show-scope">
153147
<example>
154148
<file name="index.html">
@@ -204,8 +198,6 @@ The separation of the controller and the view is important because:
204198
controller. This is important for re-skinning, device specific views (i.e. mobile vs desktop),
205199
and testability.
206200

207-
<div class="clear">
208-
</div>
209201
<example>
210202
<file name="index.html">
211203
<div ng-controller="MyCtrl">
@@ -239,10 +231,6 @@ to inherit from or special accessor methods for accessing or changing the model.
239231
primitive, object hash, or a full object Type. In short the model is a plain JavaScript object.
240232

241233

242-
<div class="clear">
243-
</div>
244-
245-
246234
<a name="view"></a>
247235
# View
248236

@@ -269,9 +257,6 @@ rendering the view compared to most other templating systems.
269257
continuously updating view which does not need template model re-merging. Your model becomes
270258
the single source-of-truth for your view.
271259

272-
<div class="clear">
273-
</div>
274-
275260
<example>
276261
<file name="index.html">
277262
<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.
369354
A {@link api/angular.Module module} is a way to configure the injector's instance factory, known
370355
as a {@link api/AUTO.$provide provider}.
371356

372-
<div class='clear'></div>
373357
<pre>
374358
// Create a module
375359
var myModule = angular.module('myModule', [])

0 commit comments

Comments
 (0)