From 0ff82cf995ba4e8cbf4c4fabbc381d3dc3de574a Mon Sep 17 00:00:00 2001 From: Sam Echikson Date: Wed, 18 Nov 2015 13:39:27 -0500 Subject: [PATCH] Fix the issue of not removing the 'display: none' added to the right handle of the range slider. Instead of setting 'display:null', do 'display:inline-block' --- dist/rzslider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/rzslider.js b/dist/rzslider.js index 2845dc6..52b15fb 100644 --- a/dist/rzslider.js +++ b/dist/rzslider.js @@ -458,7 +458,7 @@ if (!this.range) this.maxH.css('display', 'none'); else - this.maxH.css('display', null); + this.maxH.css('display', 'inline-block'); this.alwaysHide(this.flrLab, this.options.showTicksValues || this.options.hideLimitLabels); this.alwaysHide(this.ceilLab, this.options.showTicksValues || this.options.hideLimitLabels);