Hey there,
I have a meteor app that utilizes hover-over tooltips using the c3js graph library (
http://c3js.org/samples/chart_bar.html). They work well and allow the user to hover over a data point and get more information. On mobile browsers on iOS (safari, chrome) taps on the screen are registered as hover events, and the tooltips appear when the user clicks a data point as expected.
The problem is that when I build for iOS from meteor (cordova), the hover events are not registered and the tool tips are not displayed. My touch events are interpreted as a selection tool, and tries to use the copy/paste functionality.
Is there any way to listen to touch events and fire hover events, like is done automatically in mobile browsers?
Thanks,
Matt