Skip to content

Commit

Permalink
noUiSlider 13.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed Apr 24, 2019
1 parent 579dce6 commit 7d79bc1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

### 13.1.5 (*2019-03-20*)
### 13.1.5 (*2019-04-24*)
- Fixed: Full-range padding (#880);

### 13.1.4 (*2019-03-20*)
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 - 13.1.4 - 3/20/2019 */
/*! nouislider - 13.1.5 - 4/24/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 - 13.1.4 - 3/20/2019 */
/*! nouislider - 13.1.5 - 4/24/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 = "13.1.4";
var VERSION = "13.1.5";

//region Helper Methods

Expand Down Expand Up @@ -690,7 +690,7 @@
throw new Error("noUiSlider (" + VERSION + "): 'padding' option must be a positive number(s).");
}

if (parsed.padding[0] + parsed.padding[1] >= 100) {
if (parsed.padding[0] + parsed.padding[1] > 100) {
throw new Error("noUiSlider (" + VERSION + "): 'padding' option must not exceed 100% of the range.");
}
}
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.

Loading

0 comments on commit 7d79bc1

Please sign in to comment.