Skip to content

Commit e363d18

Browse files
author
Vlad Balin
committed
Update README.md
1 parent ff72dee commit e363d18

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ This is React add-on providing advanced state management to React applications a
33

44
Brief feature list:
55

6-
- React Component's state management with [NestedTypes](https://github.com/Volicon/backbone.nestedTypes).
7-
- Tricky data-binding scenarious for models attributes and collection members made easy.
6+
- Advanced Component's state management with [NestedTypes](https://github.com/Volicon/backbone.nestedTypes).
7+
- Comprehensive two-way data binding - [Guide to Data Binding Use Cases](/example/databinding.md)
88
- Transparent interoperation with Backbone Views:
99
- React component can be used as backbone View. `new MyComponent.View({ props })`
1010
- Backbone Views can be used from React components. `<React.subview View={ MyView } />`
@@ -197,6 +197,9 @@ In addition to standard members `link.requestChange( x )` and `link.value`, link
197197

198198
Most efficient way to work with link is using `link.val()` function, that's how its internally implemented. `val` function is bound, and can be passed around safely.
199199

200+
Here's a brief reference for liks API. Consult [Guide to Data Binding Use Cases](/example/databinding.md) to understand how to use it.
201+
202+
200203
### Link transformations
201204

202205
Attribute's link can be further transformed using extended link API. Link transformations allowing you to use new `stateless functions` component definition style introduced in React 0.14 in most cases.
@@ -233,5 +236,3 @@ attributes : {
233236
```
234237

235238
Technically, "watcher" - is just a callback function with a single argument receiving new attribute value, so links are not required here.
236-
237-
[Guide to Data Binding Use Cases](/example/databinding.md)

0 commit comments

Comments
 (0)