File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ var Bottom = React.createClass({
207207Some lower-level components like custom ` <input /> ` controls does not need models
208208and collections, rather single value. Also, there might be very different ways how particular
209209model attribute is bound to UI control. [ React Link] ( https://facebook.github.io/react/docs/two-way-binding-helpers.html )
210- is the perfect abstraction to isolate data binding details from the particular bound UI control.
210+ is the perfect abstraction to isolate data binding details from the UI control logic .
211211
212212` NestedReact ` supports data binding links which are backward compatible with standard React's Link.
213213
@@ -223,7 +223,7 @@ Links can be created directly using Link constructor, which allows you to handle
223223``` javascript
224224var Nested = require ( ' nestedtypes' );
225225
226- var link = new Nested.Link ( value, function ( x ){ /* update */ } );
226+ var link = new Nested.Link ( value, x => /* update */ } );
227227```
228228
229229Below is the brief reference for links API. Consult [ Guide to Data Binding Use Cases] ( /example/databinding.md ) to understand how to use it.
You can’t perform that action at this time.
0 commit comments