Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ See the [form example](https://github.com/jfyne/live-examples/tree/main/todo) fo
### Rate Limiting

- [x] live-debounce
- [ ] live-throttle
- [x] live-throttle

All events can be rate-limited on the client by using the `live-debounce` and `live-throttle` bindings,
with the following behavior:
Expand All @@ -311,6 +311,9 @@ used for input elements.
throttle will immediately emit the event, then rate limit it at once per provided timeout. Throttling is
typically used to rate limit clicks, mouse and keyboard actions.

> Note: If `live-debounce` and `live-throttle` are used on the same element,
> `live-debounce` will be used first, and then `live-throttle`.

### Dom Patching

- [x] live-update
Expand Down
Loading