diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-10-13 13:30:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-10-13 13:30:50 -0400 |
commit | a829697d0c9083438bde3a2e47964c29bfbc9417 (patch) | |
tree | 47bfe6925b477551d5c972fa42d40afedb2135a3 /ui | |
parent | 060af83ec9c78fb34b38388c00bb610410e46ee4 (diff) | |
download | jquery-ui-a829697d0c9083438bde3a2e47964c29bfbc9417.tar.gz jquery-ui-a829697d0c9083438bde3a2e47964c29bfbc9417.zip |
Mouse: Always call event.preventDefault() in _mouseDown if we've met the starting conditions. Fixes #6174 - Mouse: 1.4.3rc2 breaks interactions on anchors.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.mouse.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ui/jquery.ui.mouse.js b/ui/jquery.ui.mouse.js index 144bb80da..bdeb46c66 100644 --- a/ui/jquery.ui.mouse.js +++ b/ui/jquery.ui.mouse.js @@ -86,11 +86,7 @@ $.widget("ui.mouse", { .bind('mousemove.'+this.widgetName, this._mouseMoveDelegate) .bind('mouseup.'+this.widgetName, this._mouseUpDelegate); - // preventDefault() is used to prevent the selection of text here - - // however, in Safari, this causes select boxes not to be selectable - // anymore, so this fix is needed - ($.browser.safari || event.preventDefault()); - + event.preventDefault(); event.originalEvent.mouseHandled = true; return true; }, |