type alias DomMouseEvent = { screenX : Int , screenY : Int , clientX : Int , clientY : Int , ctrlKey : Bool , shiftKey : Bool , altKey : Bool , metaKey : Bool , button : Int , buttons : Int }
domMouseEventDecoder : Decoder DomMouseEvent
interface MouseEvent : UIEvent {
readonly attribute long screenX;
readonly attribute long screenY;
readonly attribute long clientX;
readonly attribute long clientY;
readonly attribute boolean ctrlKey;
readonly attribute boolean shiftKey;
readonly attribute boolean altKey;
readonly attribute boolean metaKey;
readonly attribute unsigned short button;
readonly attribute unsigned short buttons;
readonly attribute EventTarget? relatedTarget;
// Introduced in DOM Level 3
boolean getModifierState (DOMString keyArg);
};
--
You received this message because you are subscribed to the Google Groups "Elm Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.