Add the `unsubscribe` function to the adapter summary in the README.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -38,7 +38,7 @@ Use `rivets.configure` to configure Rivets.js for your app. There are a few hand | ... | @@ -38,7 +38,7 @@ Use `rivets.configure` to configure Rivets.js for your app. There are a few hand |
38 | 38 | ||
39 | #### Adapter | 39 | #### Adapter |
40 | 40 | ||
41 | Rivets.js is model interface-agnostic, meaning it can work with any event-driven model by way of defining an adapter. An adapter is just an object that responds to `subscribe`, `read` and `publish`. Here is a sample configuration with an adapter for using Rivets.js with Backbone.js. | 41 | Rivets.js is model interface-agnostic, meaning it can work with any event-driven model by way of defining an adapter. An adapter is just an object that responds to `subscribe`, `unsubscribe`, `read` and `publish`. Here is a sample configuration with an adapter for using Rivets.js with Backbone.js. |
42 | 42 | ||
43 | rivets.configure({ | 43 | rivets.configure({ |
44 | adapter: { | 44 | adapter: { | ... | ... |
-
Please register or sign in to post a comment