Skip to content

Commit

Permalink
v0.3.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
David-OConnor committed Jun 9, 2019
1 parent 776eede commit 75ffd9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Fetch module and API heavily changed (breaking)
- Added support for `request​Animation​Frame`, which improves render performance,
especially for animations
- Styles no longer implicitly add `px`. Added `unit!` macro in its place.
- `Map` can now be used directly in elements, without needing to annotate type and collect
(ie for child `Elements`, and `Listener`s)
- Fixed a bug where `empty` elements at the top-level were rendering in the wrong order
Expand Down
2 changes: 1 addition & 1 deletion examples/counter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn view(model: &Model) -> El<Msg> {
},
],
success_level(model.count), // Incorporating a separate component
h3!["What precisely is it we're counting?"],
h3!["What are we counting?"],
input![
attrs! {At::Value => model.what_we_count},
input_ev(Ev::Input, Msg::ChangeWWC),
Expand Down

0 comments on commit 75ffd9f

Please # to comment.