- 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