We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I do not see fastclick list on devDependencies of package.json .
fastclick
devDependencies
package.json
Should I install fastclick by myself? Or, just add alias 'react-tap-event-plugin': 'react-lite/lib/react-tap-event-plugin'?
'react-tap-event-plugin': 'react-lite/lib/react-tap-event-plugin'
react-lite/lib/react-tap-event-plugin.js:
react-lite/lib/react-tap-event-plugin.js
'use strict'; var Fastclick = require('fastclick'); module.exports = function injectTapEventPlugin() { var supportTouch = ('ontouchstart' in document); if (supportTouch) { Fastclick.attach(document.body); } };
The text was updated successfully, but these errors were encountered:
yes, npm install --save fastclick is necessary when use react-lite/lib/react-tab-event-plugin.
npm install --save fastclick
react-lite/lib/react-tab-event-plugin
Sorry, something went wrong.
@Lucifier129 Why don't include fastclick as react-lite dependency?
react-lite
@mrdulin react-lite/lib/react-tab-event-plugin is not the normal usage of react-lite, I think it's better to keep independent in package.json.
No branches or pull requests
I do not see
fastclick
list ondevDependencies
ofpackage.json
.Should I install
fastclick
by myself? Or, just add alias'react-tap-event-plugin': 'react-lite/lib/react-tap-event-plugin'
?react-lite/lib/react-tap-event-plugin.js
:The text was updated successfully, but these errors were encountered: