RoundSlider Versions Save

roundSlider - A free jQuery plugin

v1.6.1

3 years ago
  • Bug fix related to change event
  • Now borderColor, pathColor and tooltipColor properties supports "inherit", so while setting this it will inherit the rangeColor value

v1.6.0

3 years ago
  • Updated the source with CommonJS module syntax
  • Added rs- prefix for all the below classes to avoid overlap with application level styles
    • full, half, top, bottom, right, left, quarter (These classes from the rs-container element)
    • edit, hover (These classes from the rs-tooltip rs-tooltip-text element)

v1.5.2

3 years ago
  • Bug fix related to beforeValueChange event
  • Code cleanup

v1.5.1

4 years ago
  • New property and method was added (#31, #71)

    • tooltipColor - this property can be used to update the tooltip color dynamically.

    • refreshTooltip() - this method is used to refresh the tooltip position, when it is misaligned. Mostly when we create the slider with display: none state at that time only we may face this problem, in this release that also handled by built-in. Maybe in any on-demand situation to refresh the tooltip this can be used.

  • Bug fixes (#98)

v1.5.0

4 years ago
  • New events are added (#25, #26 )

    • update - this event is the combination of 'drag' and 'change' events. Simply, whenever the slider value gets updated through the user interaction at that time it will be triggered.

    • valueChange - this event is similar to 'update' event, in addition it will trigger even the value was changed through programmatically also.

    • beforeValueChange - this event will be triggered before the value change happens. And this event can be cancellable. So whenever you want to restrict the slider for particular values at that time this will be useful.

v1.4.1

4 years ago
  • New features

    • startValue property added (#100)
      • The startValue property decides at which point the slider should start. Otherwise, by default the slider starts with min value
      • This is mainly used for min-range slider, where you can customize the min-range start position
      • By setting min: -50, max: 50, startValue: 0, sliderType: 'min-range' you can achieve the mid-range-slider with the positive and negative range selection
  • Bug fixes

    • setValue() method - resolved the issue when pass array value
    • When setting min or max property alone, slider was not updated - issue resolved
    • When setting min:100, max:0, the reversed value value:"60,40" was not taken - issue resolved

v1.4.0

4 years ago
  • Added the SVG mode support (#10, #12, #15, #47, #77, #78, #97)

    • It can be enabled through the property svgMode: true, to avoid the breaking changes for the existing users
  • For the SVG customization added the below properties:

    • borderWidth
    • borderColor
    • pathColor
    • rangeColor

1.3.3

5 years ago
  • In v1.3.2, added the browser name in the root element but it was mistakenly added as "ie" in the chrome browser - Fixed (#80)
  • Change event flow changes, when pressing UP / DOWN arrow continuously (#80)
  • Provided the reverse range support, so now you can use the min: 100 and max: 0 (#81)

1.3.2

6 years ago
  • Fixed the bugs reported by the users (#16, #30, #34, #45, #49, #51, #53)
  • Some minor fixes and code changes (#54)

1.3

8 years ago
  • Added the "lineCap" property to achieve the rounded edge appearance (#6)
  • Fixed the bugs reported by the users (#5, #11, #14, #18)
  • Improved some minor fixes and corrected some behaviors.