Skip to content

Commit 1064686

Browse files
NVcaitp
authored andcommitted
docs(guide/databinding): add line breaks after images
This looks much better, thanks a bunch @NV Closes angular#7748
1 parent 4124a65 commit 1064686

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/databinding.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ When the model changes, the view reflects the change, and vice versa.
99

1010
## Data Binding in Classical Template Systems
1111

12-
<img class="right" src="img/One_Way_Data_Binding.png"/>
12+
<img class="right" src="img/One_Way_Data_Binding.png"/><br />
1313
Most templating systems bind data in only one direction: they merge template and model components
1414
together into a view. After the merge occurs, changes to the model
1515
or related sections of the view are NOT automatically reflected in the view. Worse, any changes
@@ -18,7 +18,7 @@ to write code that constantly syncs the view with the model and the model with t
1818

1919
## Data Binding in Angular Templates
2020

21-
<img class="right" src="img/Two_Way_Data_Binding.png"/>
21+
<img class="right" src="img/Two_Way_Data_Binding.png"/><br />
2222
Angular templates work differently. First the template (which is the uncompiled HTML along with
2323
any additional markup or directives) is compiled on the browser. The compilation step produces a
2424
live view. Any changes to the view are immediately reflected in the model, and any changes in

0 commit comments

Comments
 (0)