Skip to content

Commit 962e18f

Browse files
author
Vlad Balin
committed
Update BackboneViews.md
1 parent 0fedb5e commit 962e18f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/BackboneViews.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ To use it for smooth migration of existing backbone application to React, you ne
88
first (it's mostly backward compatible with Backbone 1.2 API, so transition is not hard).
99
Which by itself will be a big step forward, because:
1010

11-
- It's order of magnitude faster, so your application becomes more responsive and you can handle collection which are 10 times larger than you have now. [No kidding](http://slides.com/vladbalin/performance#/).
12-
- It implements nested models and collections handling in the right way. During `fetch`, nested objects are updated in place, so it's safe to pass them by reference.
13-
- It can handle model references by `id` in attributes for you too, operating on a set of independently fetched collections.
14-
- It's type-safe, providing the same contract for model attributes as in statically typed language. Thus,
11+
- It's order of magnitude faster, so your application becomes more responsive and you can handle collection which are 10 times larger than you have now. [No kidding](http://slides.com/vladbalin/performance#/).
12+
- It implements nested models and collections handling in the right way. During `fetch`, nested objects are updated in place, so it's safe to pass them by reference.
13+
- It can handle model references by `id` in attributes for you too, operating on a set of independently fetched collections.
14+
- It's type-safe, providing the same contract for model attributes as in statically typed language. Thus,
1515
attributes are guaranteed to hold values of declared types whatever you do, making it impossible to break client-server protocol.
16-
- At the moment of writing, no other traditional model framework supports React's pure render optimization. :)
16+
- At the moment of writing, no other traditional model framework supports React's pure render optimization. :)
1717

18-
For more information about `NestedTypes`, visit
19-
http://volicon.github.io/backbone.nestedTypes/
20-
and
21-
https://github.com/Volicon/backbone.nestedTypes
18+
For more information about `NestedTypes`, visit
19+
http://volicon.github.io/backbone.nestedTypes/
20+
and
21+
https://github.com/Volicon/backbone.nestedTypes
2222

2323
## Interoperation with existing Backbone Views
2424

0 commit comments

Comments
 (0)