diff options
author | kborchers <k_borchers@yahoo.com> | 2011-05-09 11:43:45 -0500 |
---|---|---|
committer | kborchers <k_borchers@yahoo.com> | 2011-05-09 11:43:45 -0500 |
commit | 9c50bdfde0260fc8412eec1c5020ed6b61558ebd (patch) | |
tree | 6e8c8280a9acf6c298a93ea936d38c7a41db5135 /ui/jquery.ui.mouse.js | |
parent | af5b5b19483a0a18abe1fbb43cb534a5485f0804 (diff) | |
download | jquery-ui-9c50bdfde0260fc8412eec1c5020ed6b61558ebd.tar.gz jquery-ui-9c50bdfde0260fc8412eec1c5020ed6b61558ebd.zip |
Mouse: Changed mouseHandled check to a local var rather than using originalEvent. Fixed #4333 - Nested draggables problem in IE
Diffstat (limited to 'ui/jquery.ui.mouse.js')
-rw-r--r-- | ui/jquery.ui.mouse.js | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ui/jquery.ui.mouse.js b/ui/jquery.ui.mouse.js index bfe4a7578..0bd38db85 100644 --- a/ui/jquery.ui.mouse.js +++ b/ui/jquery.ui.mouse.js @@ -12,6 +12,11 @@ */ (function( $, undefined ) { +var mouseHandled = false; +$(document).mousedown(function(e) { + mouseHandled = false; +}); + $.widget("ui.mouse", { options: { cancel: ':input,option', @@ -44,9 +49,7 @@ $.widget("ui.mouse", { _mouseDown: function(event) { // don't let more than one widget handle mouseStart - // TODO: figure out why we have to use originalEvent - event.originalEvent = event.originalEvent || {}; - if (event.originalEvent.mouseHandled) { return; } + if(mouseHandled) {return}; // we may have missed mouseup (out of window) (this._mouseStarted && this._mouseUp(event)); @@ -92,7 +95,8 @@ $.widget("ui.mouse", { .bind('mouseup.'+this.widgetName, this._mouseUpDelegate); event.preventDefault(); - event.originalEvent.mouseHandled = true; + + mouseHandled = true; return true; }, |