- Bug Fix: Fixes overlap issue with range slider. See here for further details. Thanks to Jerry (jerrylow)
- Breaking Change: Restructured and refactored SASS source files to eliminate compass dependency and be more organized. Thanks to Jacob van Mourik (jcbvm)
- Bug Fix: Fixes issue where slider accidently scrolls when user taps on mobile device. Thanks to Jerry (jerrylow)
- Bug Fix: Call resize() before layout() within relayout() method, which enables intially hidden sliders to be revealed and behave appropriately. Thanks to Peter (MaZderMind)
- Bug Fix: Fixed horizontal centering issue with labels. Thanks to Josh Guffey
- New Feature: Auto-registering/intializing slider via
data-provide="slider"
attribute. Thanks to MaZderMind - Adding Github Templates for Issues, Pull Requeusts, and Contributions
- Bug Fix: Attempted Bug fix from 6.0.11 was refined to ensure so side effects.
- Bug Fix: _setText() defaults to
.textContent
vs.innerHTML
. Thanks to gio-js
- Reverted Bug fix from prior release
- Bug fix: Slider was not scrolling properly when nested inside of scrollable container. Thanks to serbiant
- Bug fix: Race condition in
setValue()
where slider value was being set afterchange
andslide
events were being triggered. Thanks to glaszig
- Bug fix: When
tooltip_position
option is set to"bottom"
on a slider with multiple split handles, position both tooltips below the slider. Thanks to Martin Hesslund
- bower.json: changing "main" to reference /dist/bootstrap-slider.js
- package.json: changing "main" to point at proper file path
- Moving all source code to
/src
directory - Transpiling JS with Babel
- Adding
Other Guidelines
section to CONTRIBUTING.MD - Updating README with Grunt CLI tasks
- Update postpublish script to reference transpiled code
- Freezing dependency versions (this allows us to ensure the module and grunt tasks always have consistent/repeatable behavior)
- Adding an
.nvmrc
file for Node 5.x.x. This version of node comes with NPM 3.x.x, which creates a flat dependency tree fornode_modules
, which basically eliminates the need for bower as our client-side deps management solution
- Restoring bootstrap depedency to bower.json file (Fixes issue with
grunt prod
task)
- Bug fix: Ticks now reposition themselves during window resize - Thanks to Zachary Siswick