diff options
author | Hannah Methvin <hannahmethvin@gmail.com> | 2015-10-18 12:36:43 -0400 |
---|---|---|
committer | Hannah Methvin <hannahmethvin@gmail.com> | 2015-10-18 12:36:43 -0400 |
commit | a1d69208bad175a27c7b50c27fdc10001563cd4d (patch) | |
tree | c69626ed468130e03443d6ac32d856b54fd31a2e /ui/widgets/mouse.js | |
parent | ac81e39237781f72670f19b52eacceada48f76ef (diff) | |
download | jquery-ui-a1d69208bad175a27c7b50c27fdc10001563cd4d.tar.gz jquery-ui-a1d69208bad175a27c7b50c27fdc10001563cd4d.zip |
Mouse: Don't stop propagation of mouseup
Fixes #10818
Diffstat (limited to 'ui/widgets/mouse.js')
-rw-r--r-- | ui/widgets/mouse.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widgets/mouse.js b/ui/widgets/mouse.js index 938d0f4b7..1d8458b27 100644 --- a/ui/widgets/mouse.js +++ b/ui/widgets/mouse.js @@ -189,7 +189,7 @@ return $.widget( "ui.mouse", { } mouseHandled = false; - return false; + event.preventDefault(); }, _mouseDistanceMet: function( event ) { |