using ngClick i am easily able to get the relative click coordinates from event.offsetX. however using ngTouch there seems to be no obvious way of doing this. i've inspected the event.originalEvent.changedTouches[] array thoroughly but all of the coordinates in my touch event are absolute.
the only way appears to be traversing the DOM and getting each element's offset relative to its parent...a terrible solution indeed. am i missing something? where is the easy access to the x,y coordinates of the touch relative to the listening element?