Skip to content

Commit 7d79bc1

Browse files
committed
noUiSlider 13.1.5
1 parent 579dce6 commit 7d79bc1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CHANGELOG.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

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

66
### 13.1.4 (*2019-03-20*)

distribute/nouislider.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! nouislider - 13.1.4 - 3/20/2019 */
1+
/*! nouislider - 13.1.5 - 4/24/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.

distribute/nouislider.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! nouislider - 13.1.4 - 3/20/2019 */
1+
/*! nouislider - 13.1.5 - 4/24/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 = "13.1.4";
16+
var VERSION = "13.1.5";
1717

1818
//region Helper Methods
1919

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

693-
if (parsed.padding[0] + parsed.padding[1] >= 100) {
693+
if (parsed.padding[0] + parsed.padding[1] > 100) {
694694
throw new Error("noUiSlider (" + VERSION + "): 'padding' option must not exceed 100% of the range.");
695695
}
696696
}

distribute/nouislider.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)