Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rniemeyer committed Feb 15, 2013
1 parent 8efd595 commit 1f9f156
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -34,7 +34,7 @@ var SomeOtherComponent = function() {
};
```

The observable extensions accept additional arguments that can help to custom the sending/receiving behavior, as described below. Additionally, the subscriptions do not need to be created when the observables are created. You could just as easily wire these up later, if you don't want the individual view models to know that they are participating in this communication.
The subscriptions do not need to be created when the observables are instantiated. You could just as easily wire it up later, if you don't want the individual view models to know that they are participating in this communication.

```js
var ViewModelOne = function() {
Expand All @@ -53,6 +53,7 @@ one.isEditable.subscribeTo(editableTopic);
two.editable.publishOn(editableTopic)
```

The observable extensions accept additional arguments that can help to custom the sending/receiving behavior, as described below.

Basic Usage
-----------
Expand Down

0 comments on commit 1f9f156

Please sign in to comment.