Skip to content

Commit c035e83

Browse files
committed
noUiSlider 14.0.1
1 parent 972e6c7 commit c035e83

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

CHANGELOG.MD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 14.0.1 (*2019-06-21*)
4+
- Fixed: Visual regression in Safari caused by fixing #987 (#998);
5+
36
### 14.0.0 (*2019-06-20*)
47
- Fixed: `change` & `slide` events should fire on keyboard control (#994);
58
- Fixed: `.noUi-origin` overflows document on vertical sliders (#987);

distribute/nouislider.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! nouislider - 14.0.0 - 6/20/2019 */
1+
/*! nouislider - 14.0.1 - 6/21/2019 */
22
/* Functional styling;
33
* These styles are required for noUiSlider to function.
44
* You don't need to change these rules to apply your design.
@@ -51,8 +51,8 @@
5151
width: 100%;
5252
}
5353
.noUi-origin {
54-
height: 1%;
55-
width: 1%;
54+
height: 10%;
55+
width: 10%;
5656
}
5757
/* Offset direction
5858
*/

distribute/nouislider.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! nouislider - 14.0.0 - 6/20/2019 */
1+
/*! nouislider - 14.0.1 - 6/21/2019 */
22
(function(factory) {
33
if (typeof define === "function" && define.amd) {
44
// AMD. Register as an anonymous module.
@@ -13,7 +13,7 @@
1313
})(function() {
1414
"use strict";
1515

16-
var VERSION = "14.0.0";
16+
var VERSION = "14.0.1";
1717

1818
//region Helper Methods
1919

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

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

20992099
scope_Handles[handleNumber].style[options.transformRule] = translateRule;

distribute/nouislider.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

distribute/nouislider.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nouislider",
3-
"version": "14.0.0",
3+
"version": "14.0.1",
44
"main": "distribute/nouislider.js",
55
"style": "distribute/nouislider.min.css",
66
"license": "MIT",

0 commit comments

Comments
 (0)