# bbslider

> [![Build Status](https://travis-ci.org/paveltyavin/bbslider.svg?branch=master)] (https://travis-ci.org/paveltyavin/bbslider)

Latest version **0.2.1** (published 2016-04-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install bbslider
pnpm add bbslider
yarn add bbslider
bun add bbslider
```

## 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.2.1 |
| Published | 2016-04-05 |
| First published | 2016-03-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 20 |
| Author | Pavel Tyavin |
| Maintainers | paveltyavin |

## Links

- npm: https://www.npmjs.com/package/bbslider
- Repository: https://github.com/paveltyavin/bbslider
- Issues: https://github.com/paveltyavin/bbslider/issues
- npm.io page: https://npm.io/package/bbslider

## Recent versions

- 0.2.1 (latest) — 2016-04-05
- 0.2.0 — 2016-04-04
- 0.1.3 — 2016-03-24
- 0.1.2 — 2016-03-24
- 0.1.1 — 2016-03-22

## README

# BBSLIDER

[![Build Status](https://travis-ci.org/paveltyavin/bbslider.svg?branch=master)]
(https://travis-ci.org/paveltyavin/bbslider)

Slider for multiple ranges.
 
The idea comes from [Elessar](https://github.com/quarterto/Elessar)
 project. Thank you, [Matt](https://github.com/quarterto/)!
 
Main documentation is [here](http://paveltyavin.github.io/bbslider/).

## Install && Usage

    npm install bbslider
    

BBSlider exports as a CommonJS (Node) module, an AMD module, or a browser global:
```javascript
var BBSlider = require('bbslider');
```
```javascript
require(['bbslider'], function(BBSlider) { ... });
```
```html
<script src="path/to/bbslider.js"></script>
```

Create an instance with `var slider = new BBSlider` then add `slider.el` to the DOM somewhere.

```javascript
var slider = new BBSlider;
var yourElement = document.getElementById('your-element');
yourElement.appendChild(slider.el);
```

## Documentation

See this [page](http://paveltyavin.github.io/bbslider/).

## Licence
[MIT](licence.md)

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