Skip to content

Commit

Permalink
slider: browser's default outline isn't shown for the created links (…
Browse files Browse the repository at this point in the history
…fixes #3029)
  • Loading branch information
Paul Bakaus committed Jul 3, 2008
1 parent 6aaf159 commit ba5d58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/ui.slider.js
Expand Up @@ -109,7 +109,7 @@ $.widget("ui.slider", {
.each(function() { .each(function() {
new handleclass(this); new handleclass(this);
}) })
.wrap('<a href="javascript:void(0)" style="cursor:default;"></a>') .wrap('<a href="javascript:void(0)" style="cursor:default;outline:none;border:none;"></a>')
.parent() .parent()
.bind('focus', function(e) { self.focus(this.firstChild); }) .bind('focus', function(e) { self.focus(this.firstChild); })
.bind('blur', function(e) { self.blur(this.firstChild); }) .bind('blur', function(e) { self.blur(this.firstChild); })
Expand Down

0 comments on commit ba5d58d

Please sign in to comment.