slider: removed cursor:default on the a wrapper, allows for better styling, changing the cursor of the slider handle (fixes #2854)

This commit is contained in:
Paul Bakaus 2008-07-03 15:11:53 +00:00
parent 7c5e5d9c5e
commit 871092fc7a

View File

@ -109,7 +109,7 @@ $.widget("ui.slider", {
.each(function() {
new handleclass(this);
})
.wrap('<a href="javascript:void(0)" style="cursor:default;outline:none;border:none;"></a>')
.wrap('<a href="javascript:void(0)" style="outline:none;border:none;"></a>')
.parent()
.bind('focus', function(e) { self.focus(this.firstChild); })
.bind('blur', function(e) { self.blur(this.firstChild); })