Skip to content

Commit 4ad5143

Browse files
committed
Bug fix
1 parent 6a29716 commit 4ad5143

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-base-slider",
3-
"version": "6.5.0",
3+
"version": "6.5.1",
44
"homepage": "https://github.com/NielsHolt/jquery-base-slider",
55
"authors": [
66
"Niels Holt <niels@steenbuchholt.dk>"

dist/jquery-base-slider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,6 @@
12291229
//add triangle to the left or right
12301230
var $span = $('<span/>')
12311231
.addClass( 'grid-color')
1232-
.addClass( gridColor.className )
12331232
.appendTo( this.$currentGrid );
12341233
if (gridColor.value > this.options.max)
12351234
$span
@@ -1246,6 +1245,7 @@
12461245

12471246
$('<span/>')
12481247
.addClass('grid-color' + (index%2?' to':' from'))
1248+
.addClass( gridColor.className )
12491249
.css({
12501250
'left' : percentFactor*(fromValue - this.options.min) + '%',
12511251
'width' : percentFactor*(toValue-fromValue) + '%',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-base-slider",
3-
"version": "6.5.0",
3+
"version": "6.5.1",
44
"homepage": "https://github.com/FCOO/jquery-base-slider",
55
"description": "package.json is only use for building the package. see bower.json for more info",
66
"author": "Niels Holt nho@fcoo.dk",

src/jquery-base-slider-0.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,6 @@
12291229
//add triangle to the left or right
12301230
var $span = $('<span/>')
12311231
.addClass( 'grid-color')
1232-
.addClass( gridColor.className )
12331232
.appendTo( this.$currentGrid );
12341233
if (gridColor.value > this.options.max)
12351234
$span
@@ -1246,6 +1245,7 @@
12461245

12471246
$('<span/>')
12481247
.addClass('grid-color' + (index%2?' to':' from'))
1248+
.addClass( gridColor.className )
12491249
.css({
12501250
'left' : percentFactor*(fromValue - this.options.min) + '%',
12511251
'width' : percentFactor*(toValue-fromValue) + '%',

0 commit comments

Comments
 (0)