Package Exports
- air-range-slider
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (air-range-slider) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Air range slider
Customizable jQuery range slider, built with es5 and css-flexbox.
Quick start
- Install plugin via npm or you can download files directly from GitHub:
npm i air-range-slider- Import JQuery and plugin in your project:
import $ from 'jquery';
import 'air-range-slider';
import 'air-range-slider/dist/style.css';- Initialize plugin:
<div class="my-selector"></div>$('.my-selector').slider([options]);- Access instance of plugin:
$('.my-selector').data('slider');