Skip to content

Commit

Permalink
noUiSlider 14.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed Jun 21, 2019
1 parent 972e6c7 commit c035e83
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 14.0.1 (*2019-06-21*)
- Fixed: Visual regression in Safari caused by fixing #987 (#998);

### 14.0.0 (*2019-06-20*)
- Fixed: `change` & `slide` events should fire on keyboard control (#994);
- Fixed: `.noUi-origin` overflows document on vertical sliders (#987);
Expand Down
6 changes: 3 additions & 3 deletions distribute/nouislider.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 14.0.0 - 6/20/2019 */
/*! nouislider - 14.0.1 - 6/21/2019 */
/* Functional styling;
* These styles are required for noUiSlider to function.
* You don't need to change these rules to apply your design.
Expand Down Expand Up @@ -51,8 +51,8 @@
width: 100%;
}
.noUi-origin {
height: 1%;
width: 1%;
height: 10%;
width: 10%;
}
/* Offset direction
*/
Expand Down
6 changes: 3 additions & 3 deletions distribute/nouislider.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 14.0.0 - 6/20/2019 */
/*! nouislider - 14.0.1 - 6/21/2019 */
(function(factory) {
if (typeof define === "function" && define.amd) {
// AMD. Register as an anonymous module.
Expand All @@ -13,7 +13,7 @@
})(function() {
"use strict";

var VERSION = "14.0.0";
var VERSION = "14.0.1";

//region Helper Methods

Expand Down Expand Up @@ -2093,7 +2093,7 @@
// Convert the value to the slider stepping/range.
scope_Values[handleNumber] = scope_Spectrum.fromStepping(to);

var translation = 100 * (transformDirection(to, 0) - scope_DirOffset);
var translation = 10 * (transformDirection(to, 0) - scope_DirOffset);
var translateRule = "translate(" + inRuleOrder(translation + "%", "0") + ")";

scope_Handles[handleNumber].style[options.transformRule] = translateRule;
Expand Down
4 changes: 2 additions & 2 deletions distribute/nouislider.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions distribute/nouislider.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nouislider",
"version": "14.0.0",
"version": "14.0.1",
"main": "distribute/nouislider.js",
"style": "distribute/nouislider.min.css",
"license": "MIT",
Expand Down

0 comments on commit c035e83

Please sign in to comment.