Can I Fastclick ReactJS running in Cordova -
Can I Fastclick ReactJS running in Cordova -
does fastclick work reactjs's event system? doesn't seem taking when run through cordova onto ios or android. if not, there way of getting same results. app has no double-tap functionality i'd remove delay across board, if possible...
i got fastclick work react, in webpack project. few things seem finicky works. (update: toggle switch simulating clicks on hidden checkbox finicky -- problem regardless of react). here's how turned on:
npm install -s fastclick
in main.jsx:
import fastclick 'fastclick'; window.addeventlistener('load', () => { fastclick.attach(document.body); }); so if you're not using webpack or browserify, i'm guessing long can run load event listener, you'll fine.
cordova reactjs fastclick.js
Comments
Post a Comment