# hammer-dragables

> Dragables extension for Hammer.js

Latest version **0.0.1** (published 2014-03-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install hammer-dragables
pnpm add hammer-dragables
yarn add hammer-dragables
bun add hammer-dragables
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2014-03-17 |
| First published | 2014-03-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Christian Tellnes |
| Maintainers | tellnes |
| Keywords | hammer, hammerjs, drag, dragables |

## Links

- npm: https://www.npmjs.com/package/hammer-dragables
- Repository: https://github.com/tellnes/hammer-dragables
- Issues: https://github.com/tellnes/hammer-dragables/issues
- npm.io page: https://npm.io/package/hammer-dragables

## Dependencies (2)

- [hammerjs](https://npm.io/package/hammerjs.md) ~1.0.8
- [inherits](https://npm.io/package/inherits.md) ~2.0.1

## Recent versions

- 0.0.1 (latest) — 2014-03-17

## README

# hammer-draggables

This is an extension for [Hammer.js](http://eightmedia.github.io/hammer.js/)
which implements draggable elements.

## Usage

```js
var Draggables = require('hammer-draggables')

var dr = new Draggables($('ul'), { handle: 'LI' })
dr.on('start', function (event, dragging) {
  console.log('start', dragging)
})
dr.on('move', function (event, dragging) {
  console.log('move', dragging)
})
dr.on('end', function (event, dragging) {
  console.log('end', dragging)
})
```

## Install

    $ npm install hammer-draggables
    
    $ bower install https://github.com/tellnes/hammer-draggables.git

## License

MIT

---
_Source: https://npm.io/package/hammer-dragables · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
