https://github.com/markshust/meteor-nouislider
https://github.com/markshust/meteor-nouislider
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/markshust/meteor-nouislider
- Owner: markshust
- Created: 2015-10-28T02:43:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-13T02:38:37.000Z (over 10 years ago)
- Last Synced: 2024-12-27T06:26:36.854Z (over 1 year ago)
- Language: CSS
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.