Update README with new dependent property delimiter.
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -139,9 +139,9 @@ Just use `model:property` instead of `model.property` inside your binding declar | ... | @@ -139,9 +139,9 @@ Just use `model:property` instead of `model.property` inside your binding declar |
139 | 139 | ||
140 | #### Computed Properties | 140 | #### Computed Properties |
141 | 141 | ||
142 | Computed properties are functions that get re-evaluated when one or more dependent properties change. Declaring computed properties in Rivets.js is simple, just separate the function from it's dependencies with a `>`. The following `data-text` binding will get re-evaluated with `event.duration()` when either the event's `start` or `end` attribute changes. | 142 | Computed properties are functions that get re-evaluated when one or more dependent properties change. Declaring computed properties in Rivets.js is simple, just separate the function from it's dependencies with a *<*. The following `data-text` binding will get re-evaluated with `event.duration()` when either the event's `start` or `end` attribute changes. |
143 | 143 | ||
144 | <span data-text="event:duration > start end"></span> | 144 | <span data-text="event:duration < start end"></span> |
145 | 145 | ||
146 | #### Iteration Binding | 146 | #### Iteration Binding |
147 | 147 | ... | ... |
-
Please register or sign in to post a comment