From cca491dc4fd8dd207c85d9ec40b6560183e01496 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Tue, 23 Dec 2008 16:06:38 +0000 Subject: [PATCH] slider: removed hover and focus from range as it's not draggable (yet) --- ui/ui.slider.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/ui.slider.js b/ui/ui.slider.js index 250d33ab7..6c775a104 100644 --- a/ui/ui.slider.js +++ b/ui/ui.slider.js @@ -34,7 +34,8 @@ $.widget("ui.slider", $.extend({}, $.ui.mouse, { if (this.options.range) { if (this.options.range === true) { - this.range = $(''); + //this.range = $(''); + this.range = $('
'); if (!this.options.values) this.options.values = [this._valueMin(), this._valueMin()]; if (this.options.values.length && this.options.values.length != 2) { this.options.values = [this.options.values[0], this.options.values[0]];