├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── LICENSE-react ├── README.md ├── demo ├── README.md ├── index.html ├── package.json └── src │ └── application.js ├── package.json └── src ├── SyntheticEvent.js ├── TapEventPlugin.js ├── defaultClickRejectionStrategy.js └── injectTapEventPlugin.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-react: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/LICENSE-react -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/README.md -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/demo/src/application.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/SyntheticEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/src/SyntheticEvent.js -------------------------------------------------------------------------------- /src/TapEventPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/src/TapEventPlugin.js -------------------------------------------------------------------------------- /src/defaultClickRejectionStrategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/src/defaultClickRejectionStrategy.js -------------------------------------------------------------------------------- /src/injectTapEventPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilverline/react-tap-event-plugin/HEAD/src/injectTapEventPlugin.js --------------------------------------------------------------------------------