updated README
This commit is contained in:
parent
671174e17f
commit
a7dffa6ce9
@ -6,8 +6,8 @@ Yatta! provides similar functionality as [ShareJs](https://github.com/share/Shar
|
|||||||
but does not require you to understand how the internals work. The predefined data structures provide a simple API to access your shared data structures.
|
but does not require you to understand how the internals work. The predefined data structures provide a simple API to access your shared data structures.
|
||||||
|
|
||||||
Predefined data structures:
|
Predefined data structures:
|
||||||
* Text - [Collaborative Text Editing Example](http://dadamonad.github.io/Yatta/examples/TextEditing/) and [example code](./examples/TextEditing/)
|
* Text - [Collaborative Text Editing Example](http://dadamonad.github.io/Yatta/examples/TextEditing/) and [Source](./examples/TextEditing/)
|
||||||
* Json - [example code](./examples/Json/)
|
* Json - [Tutorial](./examples/PeerJs-Json/)
|
||||||
* XML (coming soon)
|
* XML (coming soon)
|
||||||
|
|
||||||
Unlike other frameworks, Yatta! supports P2P message propagation and is not bound to a specific communication protocol.
|
Unlike other frameworks, Yatta! supports P2P message propagation and is not bound to a specific communication protocol.
|
||||||
|
@ -115,7 +115,7 @@ Apply a 'addProperty' - listener to a JsonType.
|
|||||||
console.log("Property '" + property_name + "' was created!");
|
console.log("Property '" + property_name + "' was created!");
|
||||||
};
|
};
|
||||||
yatta.on('addProperty', addProperty);
|
yatta.on('addProperty', addProperty);
|
||||||
yatta.val('q', {z: 7}); // Property 'newString' was created!
|
yatta.val('new', {z: 7}); // Property 'new' was created!
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ Y.createPeerJsConnector({key: 'h7nlefbgavh1tt9'}, function(Connector, user_id){
|
|||||||
console.log("Property '" + property_name + "' was created!");
|
console.log("Property '" + property_name + "' was created!");
|
||||||
};
|
};
|
||||||
yatta.on('addProperty', addProperty);
|
yatta.on('addProperty', addProperty);
|
||||||
yatta.val('q', {z: 7}); // Property 'newString' was created!
|
yatta.val('new', {z: 7}); // Property 'new' was created!
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Apply a 'change' - listener to a JsonType.
|
Apply a 'change' - listener to a JsonType.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user