Skip to content

Commit

Permalink
Merge pull request #189 from andreruffert/release/v2.0.5
Browse files Browse the repository at this point in the history
Release/v2.0.5
  • Loading branch information
andreruffert committed Nov 30, 2015
2 parents 147ee11 + d1d10d7 commit 65b959a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "rangeslider.js",
"version": "2.0.4",
"version": "2.0.5",
"homepage": "https://github.com/andreruffert/rangeslider.js",
"authors": [
"André Ruffert <andre@andreruffert.com>"
Expand Down
8 changes: 6 additions & 2 deletions dist/rangeslider.js
@@ -1,4 +1,4 @@
/*! rangeslider.js - v2.0.4 | (c) 2015 @andreruffert | MIT license | https://github.com/andreruffert/rangeslider.js */
/*! rangeslider.js - v2.0.5 | (c) 2015 @andreruffert | MIT license | https://github.com/andreruffert/rangeslider.js */
(function(factory) {
'use strict';

Expand Down Expand Up @@ -162,7 +162,11 @@
inlineStyle[i] = hiddenParentNodes[i].style.cssText;

// visually hide
hiddenParentNodes[i].style.display = 'block';
if (hiddenParentNodes[i].style.setProperty) {
hiddenParentNodes[i].style.setProperty('display', 'block', 'important');
} else {
hiddenParentNodes[i].style.cssText += ';display: block !important';
}
hiddenParentNodes[i].style.height = '0';
hiddenParentNodes[i].style.overflow = 'hidden';
hiddenParentNodes[i].style.visibility = 'hidden';
Expand Down
4 changes: 2 additions & 2 deletions dist/rangeslider.min.js

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

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -2,8 +2,8 @@
"name": "rangeslider.js",
"title": "rangeslider.js",
"description": "Simple, small and fast JavaScript/jQuery polyfill for the HTML5 <input type=\"range\"> slider element",
"version": "2.0.4",
"codename": "Salmon",
"version": "2.0.5",
"codename": "Raw Umber",
"main": "dist/rangeslider.js",
"homepage": "https://github.com/andreruffert/rangeslider.js",
"author": {
Expand Down
6 changes: 5 additions & 1 deletion src/rangeslider.js
Expand Up @@ -161,7 +161,11 @@
inlineStyle[i] = hiddenParentNodes[i].style.cssText;

// visually hide
hiddenParentNodes[i].style.display = 'block';
if (hiddenParentNodes[i].style.setProperty) {
hiddenParentNodes[i].style.setProperty('display', 'block', 'important');
} else {
hiddenParentNodes[i].style.cssText += ';display: block !important';
}
hiddenParentNodes[i].style.height = '0';
hiddenParentNodes[i].style.overflow = 'hidden';
hiddenParentNodes[i].style.visibility = 'hidden';
Expand Down

0 comments on commit 65b959a

Please sign in to comment.