From 871092fc7a7f0efebed054a5c202768fdf6f2f10 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Thu, 3 Jul 2008 15:11:53 +0000 Subject: [PATCH] slider: removed cursor:default on the a wrapper, allows for better styling, changing the cursor of the slider handle (fixes #2854) --- ui/ui.slider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.slider.js b/ui/ui.slider.js index 53b57bd19..a1c9f24c7 100644 --- a/ui/ui.slider.js +++ b/ui/ui.slider.js @@ -109,7 +109,7 @@ $.widget("ui.slider", { .each(function() { new handleclass(this); }) - .wrap('') + .wrap('') .parent() .bind('focus', function(e) { self.focus(this.firstChild); }) .bind('blur', function(e) { self.blur(this.firstChild); })