Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manuelernestog/click-handler

Handle click and dblclick events on same element on javascript.
https://github.com/manuelernestog/click-handler

Last synced: 12 days ago
JSON representation

Handle click and dblclick events on same element on javascript.

Awesome Lists containing this project

README

        

# manuelernestog/click-handler

[![npm (scoped)](https://img.shields.io/npm/v/@bamblehorse/tiny.svg)](https://www.npmjs.com/package/@manuelernestog/click-handler)
[![npm bundle size (minified)](https://img.shields.io/bundlephobia/min/@bamblehorse/tiny.svg)](https://www.npmjs.com/package/@manuelernestog/click-handler)

Handle click and dblclick events on same element on javascript.

## Install

```bach
$ npm install @manuelernestog/click-handler
// or
$ yarn add @manuelernestog/click-handler
```

## Usage

```js
import ClickHandler from("@manuelernestog/click-handler");

const clickDelay = 500; // delay it's optional (350 miliseconds by default)
var clickHandler = new ClickHandler(clickDelay);

function onClickActions() {...}
function onDblClickActions() {...}

// Call the handle method inside your click action
function onClick() {

clickHandler.handle(onClickActions,onDblClickActions);

// If you need to handle this behavior in different elements in the same view, add the ID for isolating the state of each element
clickHandler.handle(onClickActions,onDblClickActions,elementId);

}

```