Skip to content

Commit 3f0ab5f

Browse files
committed
Update to 1.6.3
Issue #2 fixed
1 parent d96ed59 commit 3f0ab5f

7 files changed

+32
-212
lines changed

.gitattributes

-22
This file was deleted.

.gitignore

-163
This file was deleted.

ion-rangeSlider.jquery.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ion-rangeSlider",
3-
"version": "1.6.115",
4-
"title": "Ion Range Slider",
3+
"version": "1.6.3",
4+
"title": "Ion.RangeSlider",
55
"description": "Comfortable and easily customizable range slider with skins support",
66
"keywords": [
77
"jquery",
@@ -15,7 +15,8 @@
1515
],
1616
"author": {
1717
"name": "IonDen",
18-
"url": "https://github.com/IonDen"
18+
"url": "https://github.com/IonDen",
19+
"email": "[email protected]"
1920
},
2021
"licenses": [
2122
{
@@ -26,7 +27,7 @@
2627
"homepage": "https://github.com/IonDen/ion.rangeSlider",
2728
"docs": "https://github.com/IonDen/ion.rangeSlider/blob/master/readme.md",
2829
"demo": "http://ionden.com/a/plugins/ion.rangeSlider/en.html",
29-
"download": "http://ionden.com/a/plugins/ion.rangeSlider/ion.rangeSlider-1.6.zip",
30+
"download": "http://ionden.com/a/plugins/ion.rangeSlider/ion.rangeSlider-1.6.3.zip",
3031
"dependencies": {
3132
"jquery": ">=1.9"
3233
}

js/ion.rangeSlider.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Ion.RangeSlider
2-
// version 1.6.115
2+
// version 1.6.3 Build: 117
33
// © 2013 Denis Ineshin | IonDen.com
44
//
55
// Project page: http://ionden.com/a/plugins/ion.rangeSlider/
66
// GitHub page: https://github.com/IonDen/ion.rangeSlider
77
//
88
// Released under MIT licence:
9-
// http://ionden.com/a/licence.html
9+
// http://ionden.com/a/plugins/licence-en.html
1010
// =====================================================================================================================
1111

1212
(function($){
@@ -190,6 +190,8 @@
190190
calcDimensions(e, $(this), null);
191191

192192
allowDrag = true;
193+
sliderIsActive = true;
194+
193195
if(oldie) {
194196
$("*").prop("unselectable",true);
195197
}
@@ -202,6 +204,7 @@
202204
calcDimensions(e.originalEvent, $(this), null);
203205

204206
allowDrag = true;
207+
sliderIsActive = true;
205208
});
206209
}
207210

js/ion.rangeSlider.min.js

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

readme.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Ion.Range Slider 1.6
1+
# Ion.Range Slider 1.6.3
22

33
> English description | <a href="readme.ru.md">Описание на русском</a>
44
55
Easy and light range slider <a href="http://ionden.com/a/plugins/ion.rangeSlider/en.html">Project page and demos</a>
66

7-
Download: <a href="http://ionden.com/a/plugins/ion.rangeSlider/ion.rangeSlider-1.6.zip">ion.rangeSlider-1.6.zip</a>
7+
Download: <a href="http://ionden.com/a/plugins/ion.rangeSlider/ion.rangeSlider-1.6.3.zip">ion.rangeSlider-1.6.3.zip</a>
88

99
***
1010

1111
## Description
12-
Ion.Range Slider — Nice, comfortable and easily customizable range slider with skins support. Also support events and public methods, has flexible settings, can be completely altered with CSS.<br />
13-
Ion.Range Slider supports touch-devices (iPhone, iPad, etc.).<br />
14-
Ion.Range Slider freely distributed under <a href="http://ionden.com/a/plugins/licence-en.html" target="_blank">MIT licence</a>.
12+
Ion.RangeSlider — Nice, comfortable and easily customizable range slider with skins support. Also support events and public methods, has flexible settings, can be completely altered with CSS.<br />
13+
Ion.RangeSlider supports touch-devices (iPhone, iPad, etc.).<br />
14+
Ion.RangeSlider freely distributed under <a href="http://ionden.com/a/plugins/licence-en.html" target="_blank">MIT licence</a>.
1515

1616
## Dependencies
1717
* <a href="http://jquery.com/" target="_blank">jQuery 1.9+</a>
@@ -163,6 +163,7 @@ $("#someID").ionRangeSlider("remove");
163163
</table>
164164

165165
## Update history
166+
* July 29, 2013 - Issue #2 fixed. Versioning changed
166167
* June 30, 2013 - minor bug fixes and new option "hideText"
167168
* June 21, 2013 - added the ability to display the grid
168169
* June 21, 2013 - minor bug fix

0 commit comments

Comments
 (0)