Skip to content

Commit 75ffd9f

Browse files
committed
v0.3.6 release
1 parent 776eede commit 75ffd9f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Fetch module and API heavily changed (breaking)
55
- Added support for `request​Animation​Frame`, which improves render performance,
66
especially for animations
7+
- Styles no longer implicitly add `px`. Added `unit!` macro in its place.
78
- `Map` can now be used directly in elements, without needing to annotate type and collect
89
(ie for child `Elements`, and `Listener`s)
910
- Fixed a bug where `empty` elements at the top-level were rendering in the wrong order

examples/counter/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn view(model: &Model) -> El<Msg> {
9595
},
9696
],
9797
success_level(model.count), // Incorporating a separate component
98-
h3!["What precisely is it we're counting?"],
98+
h3!["What are we counting?"],
9999
input![
100100
attrs! {At::Value => model.what_we_count},
101101
input_ev(Ev::Input, Msg::ChangeWWC),

0 commit comments

Comments
 (0)