Skip to content

Commit

Permalink
Release v9.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rovolution committed Apr 25, 2017
1 parent a4ebdf1 commit 00b7aea
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seiyria-bootstrap-slider",
"version": "9.7.3",
"version": "9.8.0",
"homepage": "https://github.com/seiyria/bootstrap-slider",
"authors": [
"Kyle Kemp <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "seiyria/bootstrap-slider",
"type": "library",
"version": "9.7.3",
"version": "9.8.0",
"description": "A less buggy fork of the original bootstrap slider found on http://www.eyecon.ro/ by Stefan Petre. It was forked so we could update the slider since the original wasn't under version control.",
"keywords": ["slider", "css", "bootstrap", "javascript"],
"homepage": "https://github.com/seiyria/bootstrap-slider",
Expand Down
12 changes: 6 additions & 6 deletions dist/bootstrap-slider.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*! =======================================================
VERSION 9.7.3
VERSION 9.8.0
========================================================= */
"use strict";

Expand Down Expand Up @@ -460,12 +460,12 @@ var windowIsDefined = (typeof window === "undefined" ? "undefined" : _typeof(win

/* Create highlight range elements */
this.rangeHighlightElements = [];
if (Array.isArray(this.options.rangeHighlights) && this.options.rangeHighlights.length > 0) {
for (var j = 0; j < this.options.rangeHighlights.length; j++) {

var rangeHighlightsOpts = this.options.rangeHighlights;
if (Array.isArray(rangeHighlightsOpts) && rangeHighlightsOpts.length > 0) {
for (var j = 0; j < rangeHighlightsOpts.length; j++) {
var rangeHighlightElement = document.createElement("div");
rangeHighlightElement.className = "slider-rangeHighlight slider-selection";

var customClassString = rangeHighlightsOpts[j].class || "";
rangeHighlightElement.className = "slider-rangeHighlight slider-selection " + customClassString;
this.rangeHighlightElements.push(rangeHighlightElement);
sliderTrack.appendChild(rangeHighlightElement);
}
Expand Down
6 changes: 3 additions & 3 deletions dist/bootstrap-slider.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-slider.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*! =======================================================
VERSION 9.7.3
VERSION 9.8.0
========================================================= */
/*! =========================================================
* bootstrap-slider.js
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap-slider.min.css

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-slider",
"version": "9.7.3",
"version": "9.8.0",
"description": "Slider view component for Twitter Bootstrap.",
"main": "dist/bootstrap-slider.js",
"style": "dist/css/bootstrap-slider.css",
Expand Down

0 comments on commit 00b7aea

Please sign in to comment.