tooty/src/Ports.elm
Vincent Jousse 9b8293554f Add scrollIntoView port (#129)
* Add scrollIntoView port

* Fix js formatting

* @n1k0's review
2017-05-04 08:31:58 +02:00

20 lines
321 B
Elm

port module Ports
exposing
( saveRegistration
, scrollIntoView
, saveClient
, setStatus
)
port saveRegistration : String -> Cmd msg
port saveClient : String -> Cmd msg
port setStatus : { id : String, status : String } -> Cmd msg
port scrollIntoView : String -> Cmd msg