elm/libraries/Window.elm

19 lines
404 B
Elm
Raw Normal View History

module Window where
import Signal (Signal)
2013-07-26 15:36:01 +00:00
import Native.Window as Native
-- The current dimensions of the window (i.e. the area viewable to the
-- user, not including scroll bars).
dimensions : Signal (Int,Int)
2013-07-26 15:36:01 +00:00
dimensions = Native.dimensions
-- The current width of the window.
width : Signal Int
2013-07-26 15:36:01 +00:00
width = Native.width
-- The current height of the window.
height : Signal Int
2013-07-26 15:36:01 +00:00
height = Native.height