Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 9a00d8d

Browse files
committed
Merge pull request #163 from andreruffert/release/v1.3.2
release: v1.3.2
2 parents 4862f57 + cdcba45 commit 9a00d8d

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Install with [npm](https://www.npmjs.org/):
2626
$('input[type="range"]').rangeslider();
2727
```
2828

29-
For more informations check out the [website's section](http://andreruffert.github.io/rangeslider.js/#usage). For support visit the [gitter room](https://gitter.im/andreruffert/rangeslider.js).
29+
For more information check out the [website's section](http://andreruffert.github.io/rangeslider.js/#usage). For support visit the [gitter room](https://gitter.im/andreruffert/rangeslider.js).
3030

3131

3232
## License

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rangeslider.js",
3-
"version": "1.2.2",
3+
"version": "1.3.2",
44
"homepage": "https://github.com/andreruffert/rangeslider.js",
55
"authors": [
66
"André Ruffert <[email protected]>"

dist/rangeslider.css

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
height: 40px;
3737
position: absolute;
3838
top: -10px;
39+
touch-action: pan-y;
40+
-ms-touch-action: pan-y;
3941
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
4042
background-size: 100%;
4143
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));

dist/rangeslider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! rangeslider.js - v1.2.2 | (c) 2015 @andreruffert | MIT license | https://github.com/andreruffert/rangeslider.js */
1+
/*! rangeslider.js - v1.3.2 | (c) 2015 @andreruffert | MIT license | https://github.com/andreruffert/rangeslider.js */
22
(function(factory) {
33
'use strict';
44

dist/rangeslider.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "rangeslider.js",
33
"title": "rangeslider.js",
44
"description": "Simple, small and fast JavaScript/jQuery polyfill for the HTML5 <input type=\"range\"> slider element",
5-
"version": "1.2.2",
6-
"codename": "Piggy Pink",
5+
"version": "1.3.2",
6+
"codename": "Cotton Candy",
77
"main": "dist/rangeslider.js",
88
"homepage": "https://github.com/andreruffert/rangeslider.js",
99
"author": {

src/rangeslider.scss

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ $rangeslider__handle: ".rangeslider__handle";
3737
height: 40px;
3838
position: absolute;
3939
top: -10px;
40+
touch-action: pan-y;
41+
-ms-touch-action: pan-y;
4042
@include background-image(linear-gradient(rgba(white, 0), rgba(black, .10)));
4143
@include box-shadow(0 0 8px rgba(black, .3));
4244
@include border-radius(50%);

0 commit comments

Comments
 (0)