Skip to content
Open
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 src/Browser/Events.elm
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ For example, you could track the current width by saying:
type Msg
= GotNewWidth Int

subscriptions : model -> Cmd Msg
subscriptions : model -> Sub Msg
subscriptions _ =
E.onResize (\w h -> GotNewWidth w)

Expand Down