File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 4
4
- Fetch module and API heavily changed (breaking)
5
5
- Added support for ` requestAnimationFrame ` , which improves render performance,
6
6
especially for animations
7
+ - Styles no longer implicitly add ` px ` . Added ` unit! ` macro in its place.
7
8
- ` Map ` can now be used directly in elements, without needing to annotate type and collect
8
9
(ie for child ` Elements ` , and ` Listener ` s)
9
10
- Fixed a bug where ` empty ` elements at the top-level were rendering in the wrong order
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ fn view(model: &Model) -> El<Msg> {
95
95
} ,
96
96
] ,
97
97
success_level( model. count) , // Incorporating a separate component
98
- h3![ "What precisely is it we're counting?" ] ,
98
+ h3![ "What are we counting?" ] ,
99
99
input![
100
100
attrs! { At :: Value => model. what_we_count} ,
101
101
input_ev( Ev :: Input , Msg :: ChangeWWC ) ,
You can’t perform that action at this time.
0 commit comments