You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@ This is React add-on providing advanced state management to React applications a
3
3
4
4
Brief feature list:
5
5
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)
8
8
- Transparent interoperation with Backbone Views:
9
9
- React component can be used as backbone View. `new MyComponent.View({ props })`
10
10
- 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
197
197
198
198
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.
199
199
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
+
200
203
### Link transformations
201
204
202
205
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 : {
233
236
```
234
237
235
238
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