1. 25 May, 2016 2 commits
  2. 24 May, 2016 1 commit
    • Tom Chiverton's avatar
      IE8 support (#314) · 1ee44571
      Tom Chiverton authored
      * IE8 support
      
      IE8 requires the ability to use the alternative directive syntax : <div rzslider ... ></div>
      
      Fixes #313
      
      * Update for new default template
      
      * New template for IE8 support
      
      * Update for new template
      
      * oops
      
      * Suggested fixes for #314
      1ee44571
  3. 22 May, 2016 5 commits
  4. 19 May, 2016 1 commit
  5. 17 May, 2016 1 commit
  6. 13 May, 2016 1 commit
  7. 24 Apr, 2016 3 commits
  8. 22 Apr, 2016 3 commits
  9. 01 Apr, 2016 5 commits
  10. 30 Mar, 2016 2 commits
  11. 28 Mar, 2016 1 commit
  12. 25 Mar, 2016 1 commit
  13. 16 Mar, 2016 2 commits
  14. 14 Mar, 2016 2 commits
  15. 13 Mar, 2016 1 commit
  16. 01 Mar, 2016 2 commits
  17. 29 Feb, 2016 4 commits
  18. 28 Feb, 2016 1 commit
  19. 25 Feb, 2016 1 commit
  20. 24 Feb, 2016 1 commit
    • Dariusz Mikołajczuk's avatar
      Fixed number precision when draggableRange=true · fb033f0b
      Dariusz Mikołajczuk authored
      When there was set options.precision>0 (non-zero fraction part)
      and moved a range there was a issue with number rounding on both
      ends of selected range. Sometimes numbers had small value at far fraction.
      
      It can be reproduced with live demo by setting, for example:
        minValue: 3.6,
        maxValue: 5.8
        floor: 0,
        ceil: 10
        step: 0.1,
        precision: 1,
        draggableRange: true
      
      It's possible to produce value, e.g: 6.2999999999... but used precision
      expects to see rounded value: 6.3.
      fb033f0b