aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-13 11:49:39 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-13 11:49:39 +0000
commitb731dc5e9798601da4a3e505512b4efe5b90b63d (patch)
treeb48b9ee639069ddbd14ef0205c1eaf44428a14d7 /ui
parent00cc93960367130a0f326a07ed1905b930dabb2e (diff)
downloadjquery-ui-b731dc5e9798601da4a3e505512b4efe5b90b63d.tar.gz
jquery-ui-b731dc5e9798601da4a3e505512b4efe5b90b63d.zip
Slider: started on #3650 - Slider: Update markup to new UI CSS Framework specs
Diffstat (limited to 'ui')
-rw-r--r--ui/ui.slider.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/ui/ui.slider.js b/ui/ui.slider.js
index a6473fe19..d4951ec3f 100644
--- a/ui/ui.slider.js
+++ b/ui/ui.slider.js
@@ -23,14 +23,14 @@ $.widget("ui.slider", {
_init: function() {
var self = this;
- this.element.addClass("ui-slider");
+ this.element.addClass("ui-slider ui-widget ui-widget-content ui-corner-all");
this._initBoundaries();
// Initialize mouse and key events for interaction
this.handle = $(this.options.handle, this.element);
if (!this.handle.length) {
self.handle = self.generated = $(self.options.handles || [0]).map(function() {
- var handle = $("<div/>").addClass("ui-slider-handle").appendTo(self.element);
+ var handle = $('<a href="#"></a>').addClass("ui-slider-handle ui-state-default ui-corner-all").appendTo(self.element);
if (this.id)
handle.attr("id", this.id);
return handle[0];
@@ -62,7 +62,6 @@ $.widget("ui.slider", {
.each(function() {
new handleclass(this);
})
- .wrap('<a href="#" style="outline:none;border:none;"></a>')
.parent()
.bind('click', function() { return false; })
.bind('focus', function(event) { self._focus(this.firstChild); })
@@ -101,7 +100,7 @@ $.widget("ui.slider", {
destroy: function() {
this.element
- .removeClass("ui-slider ui-slider-disabled")
+ .removeClass("ui-slider ui-slider-disabled ui-widget ui-widget-content ui-corner-all")
.removeData("slider")
.unbind(".slider");