Skip to content

Latest commit

 

History

History
109 lines (84 loc) · 5.47 KB

CHANGELOG.md

File metadata and controls

109 lines (84 loc) · 5.47 KB

9.1.3 / 2016-08-06

  • Bug Fix: Checks for window object before attempting to attach console polyfills. Resolves this issue

9.1.2 / 2016-08-06

  • Accidental publish

9.1.1 / 2016-07-15

9.1.0 / 2016-07-14

  • New Feature: Always binding to the $.fn.bootstrapSlider namespace and printing a console warning when the $.fn.slider namespace is already bound. Idea came from discussion in this issue

9.0.0 / 2016-07-13

  • New Feature: Wraps all of the ticks within a single container element with the class .slider-tick-container as opposed to being within the .slider-track element. This enables individual ticks to be more easily targeted with CSS selectors such as nth-of-type(n). Idea came from discussion in this issue

8.0.0 / 2016-07-13

  • Revert: Reverting bug fix made in 7.0.4 - 7.0.5 because it breaks UMD module definition and r.js build tool as reported in this issue. Updated README to address how to stub out optional JQuery dependency for Webpack builds.

7.1.0 - 7.1.1 / 2016-05-26

7.0.4 - 7.0.5 / 2016-05-26

7.0.2 / 2016-04-05

7.0.0 / 2016-04-05

  • Breaking Change: Restructured and refactored SASS source files to eliminate compass dependency and be more organized. Thanks to Jacob van Mourik (jcbvm)

6.1.7 / 2016-04-03

  • Bug Fix: Fixes issue where slider accidently scrolls when user taps on mobile device. Thanks to Jerry (jerrylow)

6.1.5 / 2016-03-12

  • Bug Fix: Call resize() before layout() within relayout() method, which enables intially hidden sliders to be revealed and behave appropriately. Thanks to Peter (MaZderMind)

6.1.3 / 2016-03-07

  • Bug Fix: Fixed horizontal centering issue with labels. Thanks to Josh Guffey

6.1.0 / 2016-02-28

  • New Feature: Auto-registering/intializing slider via data-provide="slider" attribute. Thanks to MaZderMind
  • Adding Github Templates for Issues, Pull Requeusts, and Contributions

6.0.16 / 2016-02-04

  • Bug Fix: Attempted Bug fix from 6.0.11 was refined to ensure so side effects.

6.0.15 / 2016-02-04

  • Bug Fix: _setText() defaults to .textContent vs .innerHTML. Thanks to gio-js

6.0.13 / 2016-01-31

  • Reverted Bug fix from prior release

6.0.11 / 2016-01-31

  • Bug fix: Slider was not scrolling properly when nested inside of scrollable container. Thanks to serbiant

6.0.9 / 2016-01-26

  • Bug fix: Race condition in setValue() where slider value was being set after change and slide events were being triggered. Thanks to glaszig

6.0.7 / 2016-01-22

  • 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

6.0.5 / 2016-01-20

  • bower.json: changing "main" to reference /dist/bootstrap-slider.js

6.0.2 / 2015-12-31

  • package.json: changing "main" to point at proper file path

6.0.0 / 2015-12-30

  • 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 for node_modules, which basically eliminates the need for bower as our client-side deps management solution

5.3.6 / 2015-12-27

  • Restoring bootstrap depedency to bower.json file (Fixes issue with grunt prod task)

5.3.4 / 2015-12-27

  • Bug fix: Ticks now reposition themselves during window resize - Thanks to Zachary Siswick