Skip to content

Commit

Permalink
Release v1.11.4 ⚡🐏⚡
Browse files Browse the repository at this point in the history
  • Loading branch information
simeydotme committed Sep 4, 2016
1 parent 0bb4dda commit 9da182f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jQuery-ui-Slider-Pips",
"version": "1.11.3",
"version": "1.11.4",
"description": "A plugin to add little \"pips\" to the jQuery UI Slider widget",
"main": [
"dist/jquery-ui-slider-pips.css",
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery-ui-slider-pips.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! jQuery-ui-Slider-Pips - v1.11.3 - 2016-03-15
/*! jQuery-ui-Slider-Pips - v1.11.4 - 2016-09-04
* Copyright (c) 2016 Simon Goellner <[email protected]>; Licensed MIT */

/* HORIZONTAL */
Expand Down
9 changes: 2 additions & 7 deletions dist/jquery-ui-slider-pips.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/*! jQuery-ui-Slider-Pips - v1.11.3 - 2016-03-15
/*! jQuery-ui-Slider-Pips - v1.11.4 - 2016-09-04
* Copyright (c) 2016 Simon Goellner <[email protected]>; Licensed MIT */

/*! jQuery-ui-Slider-Pips - v1.11.1 - 2015-11-30
* Copyright (c) 2015 Simon Goellner <[email protected]>; Licensed MIT */



(function($) {

"use strict";
Expand Down Expand Up @@ -314,7 +309,7 @@
classLabel = labelValue.toString().replace(".", "-");

// get the index needed for selecting labels out of the array
labelIndex = Math.round( ( number - min ) / options.step );
labelIndex = ( number + min ) - min;

// we need to set the human-readable label to either the
// corresponding element in the array, or the appropriate
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery-ui-slider-pips.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9da182f

Please sign in to comment.