diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-23 16:06:38 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-23 16:06:38 +0000 |
commit | cca491dc4fd8dd207c85d9ec40b6560183e01496 (patch) | |
tree | 92c1cfe3f922d2be031ad095078f1796dee7962c /ui/ui.slider.js | |
parent | 26be359cdeec243c95c45605464b25dd2cf86b6f (diff) | |
download | jquery-ui-cca491dc4fd8dd207c85d9ec40b6560183e01496.tar.gz jquery-ui-cca491dc4fd8dd207c85d9ec40b6560183e01496.zip |
slider: removed hover and focus from range as it's not draggable (yet)
Diffstat (limited to 'ui/ui.slider.js')
-rw-r--r-- | ui/ui.slider.js | 3 |
1 files changed, 2 insertions, 1 deletions
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 = $('<a href="#"></a>'); + //this.range = $('<a href="#"></a>'); + this.range = $('<div></div>'); 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]]; |