@@ -45,8 +45,6 @@ This is how we get the ball rolling (refer to the diagram and example below):
45
45
9. The `{{name}}` {@link api/ng.$interpolate interpolates} the expression to
46
46
`Hello World!`
47
47
48
- <div class="clear">
49
- </div>
50
48
<example>
51
49
<file name="index.html">
52
50
<p ng-init=" name='World' ">Hello {{name}}!</p>
@@ -126,8 +124,6 @@ user enters text into the text field.
126
124
the JavaScript execution context.
127
125
7. The browser re-renders the view with update text.
128
126
129
- <div class="clear">
130
- </div>
131
127
<example>
132
128
<file name="index.html">
133
129
<input ng-model="name">
@@ -147,8 +143,6 @@ The following example demonstrates how the `name` {@link guide/expression expres
147
143
into a different value depending on which scope it is evaluated in. The example is followed by
148
144
a diagram depicting the scope boundaries.
149
145
150
- <div class="clear">
151
- </div>
152
146
<div class="show-scope">
153
147
<example>
154
148
<file name="index.html">
@@ -204,8 +198,6 @@ The separation of the controller and the view is important because:
204
198
controller. This is important for re-skinning, device specific views (i.e. mobile vs desktop),
205
199
and testability.
206
200
207
- <div class="clear">
208
- </div>
209
201
<example>
210
202
<file name="index.html">
211
203
<div ng-controller="MyCtrl">
@@ -239,10 +231,6 @@ to inherit from or special accessor methods for accessing or changing the model.
239
231
primitive, object hash, or a full object Type. In short the model is a plain JavaScript object.
240
232
241
233
242
- <div class="clear">
243
- </div>
244
-
245
-
246
234
<a name="view"></a>
247
235
# View
248
236
@@ -269,9 +257,6 @@ rendering the view compared to most other templating systems.
269
257
continuously updating view which does not need template model re-merging. Your model becomes
270
258
the single source-of-truth for your view.
271
259
272
- <div class="clear">
273
- </div>
274
-
275
260
<example>
276
261
<file name="index.html">
277
262
<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.
369
354
A {@link api/angular.Module module} is a way to configure the injector's instance factory, known
370
355
as a {@link api/AUTO.$provide provider}.
371
356
372
- <div class='clear'></div>
373
357
<pre>
374
358
// Create a module
375
359
var myModule = angular.module('myModule', [])
0 commit comments