Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-fastclick-alt

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-fastclick-alt

A react component that triggers click events for taps

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
233
increased by16.5%
Maintainers
1
Weekly downloads
 
Created
Source

react-fastclick

Wrapper div that implements the FastClick logic in its touch events, triggering appropriate click and focus events on its children if it detects a 'tap'.

Install

npm install --save react-fastclick-alt

Component Usage

Wrap your component in an instance of this component, and it should respond to short taps with immediate click events.

var React = require('react');
var FastClick = require('react-fastclick-alt');
var ReactDOM = require('react-dom');
ReactDOM.render(FastClick({}, MyApp()), document.getElementById('app'));

Note this is safe to do even if child components include react-fastclick-alt because a touchend event that triggers a click will not be propagated.

Properties

There are two optional props to this component.

threshold (Number)

How far a touch can move before it can no longer be converted to a click, in px. Defaults to 15px.

timeThreshold (Number)

How long a tap can be held before it can no longer be converted to a click, in milliseconds. Defaults to 125ms.

Keywords

FAQs

Package last updated on 05 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc