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

https://github.com/markshust/meteor-nouislider


https://github.com/markshust/meteor-nouislider

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# markoshust:nouislider

## Add noUISlider to Meteor

`meteor add markoshust:nouislider`

Pulls library from the `nouislider` NPM repo.

## Usage

Add the following to your onRendered (blaze) or componentDidMount (react) function:

```
noUiSlider.create(document.getElementById("slider"), {
connect: "lower",
range: {
min: 0,
max: 100
},
start: 50
});
```

## Documentation

See the wonderful noUISlider project at https://github.com/leongersen/noUiSlider for more documention.