Skip to content

Commit

Permalink
noUiSlider 14.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed Jun 28, 2019
1 parent ea2adf5 commit 9dc8676
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 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.2 (*2019-06-28*)
- Fixed: Keyboard interaction uses formatter when it does not need to (#1000);

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

Expand Down
2 changes: 1 addition & 1 deletion distribute/nouislider.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 14.0.1 - 6/21/2019 */
/*! nouislider - 14.0.2 - 6/28/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
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.1 - 6/21/2019 */
/*! nouislider - 14.0.2 - 6/28/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.1";
var VERSION = "14.0.2";

//region Helper Methods

Expand Down Expand Up @@ -1838,7 +1838,7 @@
// Decrement for down steps
step = (isDown ? -1 : 1) * step;

setHandle(handleNumber, resolveToValue(scope_Values[handleNumber] + step, handleNumber), true, true);
setHandle(handleNumber, scope_Spectrum.toStepping(scope_Values[handleNumber] + step), true, true);

fireEvent("slide", handleNumber);
fireEvent("update", handleNumber);
Expand Down
2 changes: 1 addition & 1 deletion 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.1",
"version": "14.0.2",
"main": "distribute/nouislider.js",
"style": "distribute/nouislider.min.css",
"license": "MIT",
Expand Down

0 comments on commit 9dc8676

Please sign in to comment.