elm/libraries/Window.elm

13 lines
274 B
Elm
Raw Normal View History

module Window where
-- The current dimensions of the window (i.e. the area viewable to the
-- user, not including scroll bars).
dimensions : Signal (Int,Int)
-- The current width of the window.
width : Signal Int
-- The current height of the window.
height : Signal Int