Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ As an example, the signal can be used to show a loading indicator.

```fsharp
Elem.button [
Ds.onClick (Ds.get "/fetchBigData") // make a request to the backend
Ds.onClick (Ds.get "/fetchBigData") // make a request to the backend, making fetch happen
Ds.indicator "fetching" // the signal we are creating
Ds.attr' ("disabled", "$fetching") // assigns the "disabled" attribute if the `fetching` signal value is true
] [ Text.raw "Fetch!" ]
Expand Down