2.0.0 • Published 4 years ago

click-and-hold v2.0.0

Weekly downloads
40
License
ISC
Repository
github
Last release
4 years ago

Click And Hold

Build Status

Will fire a handler throttled by an interval, continuously while user presses on element.

Supports touch.

Zero dependencies.

How to use:

Important to note: If your handler relies on scope, ensure it is called with the correct scope by binding the scope directly, or using the closure.

import clickAndHold from 'click-and-hold';

clickAndHold.register(element, handler.bind(theScopeYouWant), interval);

clickAndHold.unregister(element);

How it works:

When the element is first interacted with (mousedown, touchstart), we start a loop that will continuously try and call a passed handler on a passed interval. To avoid complexity, we store the interval and subsequent handlers on the element itself. Its only 50 something lines. Scope it.

Install:

npm install --save-dev click-and-hold

Upgrading

From 1.X.X -> 2.X.X, We are now using es6 module imports instead of common.js. Thinks like webpack/browserify/etc should be able to hang either way.

I am not trying to camp names on NPM, so if someone else wants this name just let me know and I will gladly take my repo down.

1.0.2

4 years ago

2.0.0

4 years ago

1.0.1

8 years ago

1.0.0

8 years ago