Skip to content

Instantly share code, notes, and snippets.

@avh4
Created June 10, 2015 20:21
Show Gist options
  • Save avh4/15e5a9be3e6cff0cef01 to your computer and use it in GitHub Desktop.
Save avh4/15e5a9be3e6cff0cef01 to your computer and use it in GitHub Desktop.
parsing onClick location in Elm
import Json.Decode as Decode
decodeClickLocation : Decode.Decoder (Int,Int)
decodeClickLocation =
Decode.object2 (,)
(Decode.object2 (-)
(Decode.at ["pageX"] Decode.int)
(Decode.at ["target", "offsetLeft"] Decode.int)
)
(Decode.object2 (-)
(Decode.at ["pageY"] Decode.int)
(Decode.at ["target", "offsetTop"] Decode.int)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment