Created
June 10, 2015 20:21
-
-
Save avh4/15e5a9be3e6cff0cef01 to your computer and use it in GitHub Desktop.
parsing onClick location in Elm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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