Just finished a long hack session getting touch events to work. Turns out google helpfully strips out the touch information from touch events before domina gets them, and then the touch events don't really support any of the stuff documented here:
https://developer.mozilla.org/en-US/docs/DOM/TouchEvent
My solution is here - basically getting the original browser event and accessing its touch stuff.
http://stackoverflow.com/questions/15732028/clojurescript-touch-events-and-domina/15745781#15745781
It would be nice if domina could make up for google's shortcoming by making the touch information available in the domina event structures.
Just finished a long hack session getting touch events to work. Turns out google helpfully strips out the touch information from touch events before domina gets them, and then the touch events don't really support any of the stuff documented here:
https://developer.mozilla.org/en-US/docs/DOM/TouchEvent
My solution is here - basically getting the original browser event and accessing its touch stuff.
http://stackoverflow.com/questions/15732028/clojurescript-touch-events-and-domina/15745781#15745781
It would be nice if domina could make up for google's shortcoming by making the touch information available in the domina event structures.